From subversion at boxbackup.org Sun May 1 17:34:16 2011 From: subversion at boxbackup.org (subversion at boxbackup.org) Date: Sun, 1 May 2011 17:34:16 +0100 (BST) Subject: [Box Backup-commit] COMMIT r2951 - box/trunk/infrastructure Message-ID: <20110501163416.3458118999A@www.boxbackup.org> Author: jamesog Date: 2011-05-01 17:34:15 +0100 (Sun, 01 May 2011) New Revision: 2951 Modified: box/trunk/infrastructure/BoxPlatform.pm.in Log: Refine CPU detection code in BoxPlatform to allow use of multiple processors on systems other than Darwin. Modified: box/trunk/infrastructure/BoxPlatform.pm.in =================================================================== --- box/trunk/infrastructure/BoxPlatform.pm.in 2011-04-29 00:10:36 UTC (rev 2950) +++ box/trunk/infrastructure/BoxPlatform.pm.in 2011-05-01 16:34:15 UTC (rev 2951) @@ -82,17 +82,30 @@ # where to put the files $install_into_dir = '@sbindir_expanded@'; + # see how many processors there are, and set make flags accordingly + if($build_os eq 'Darwin' || $build_os =~ /(Free|Net|Open)BSD/) + { + $cpus = `sysctl -n hw.ncpu`; + } + elsif($build_os eq 'Linux') + { + $cpus = `grep -c ^processor /proc/cpuinfo`; + } + elsif($build_os eq 'SunOS') + { + $cpus = `psrinfo -p`; + } + + chomp $cpus; + if($cpus > 1) + { + print STDERR "$cpus processors detected, will set make to perform concurrent jobs\n"; + $sub_make_options = ' -j '.($cpus + 1); + } + # if it's Darwin, if($build_os eq 'Darwin') { - # see how many processors there are, and set make flags accordingly - my $cpus = `sysctl hw.ncpu`; - if($cpus =~ m/hw.ncpu:\s(\d+)/ && $1 > 1) - { - print STDERR "$1 processors detected, will set make to perform concurrent jobs\n"; - $sub_make_options = ' -j '.($1 + 1); - } - # test for fink installation if(-d '/sw/include' && -d '/sw/lib') { From trac at boxbackup.org Sun May 1 17:43:12 2011 From: trac at boxbackup.org (Trac) Date: Sun, 01 May 2011 16:43:12 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2951] Trunk Message-ID: <20110501164312.3680B18C151@www.boxbackup.org> Failed build of Box Backup [2951] --------------------------------------------------------------------- Changeset: 2951 - Committed by: jamesog Build Configuration: Trunk Build Platform: Solaris 10 x86 Build Slave: solaris-vbox Build Number: 1722 - Failures: Step: build-client Errors: Executing make failed (error code 1) Log: [INFO ] ==> Client build start [INFO ] (cd bin/bbackupd; gmake RELEASE=1) [INFO ] gmake[1]: Entering directory `bin/bbackupd' [INFO ] gmake[2]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../release/lib/win32/win32.a [INFO ] [RANLIB] ../../release/lib/win32/win32.a [INFO ] gmake[2]: Leaving directory `lib/win32' [INFO ] gmake[2]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [ERROR ] In file included from FdGetLine.h:15, [ERROR ] from Configuration.cpp:21: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from Configuration.cpp:21: [ERROR ] FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [ERROR ] Configuration.cpp: In member function `bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [ERROR ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [ERROR ] In file included from FdGetLine.h:15, [ERROR ] from FdGetLine.cpp:18: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from FdGetLine.cpp:18: [ERROR ] FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [ERROR ] In file included from GetLine.cpp:18: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [ERROR ] In file included from IOStreamGetLine.h:15, [ERROR ] from IOStreamGetLine.cpp:11: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from IOStreamGetLine.cpp:11: [ERROR ] IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [ERROR ] Timer.cpp: In static member function `static void Timers::Cleanup()': [ERROR ] Timer.cpp:86: warning: unused variable 'result' [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../release/lib/common/common.a [INFO ] [RANLIB] ../../release/lib/common/common.a [INFO ] gmake[2]: Leaving directory `lib/common' [INFO ] gmake[2]: Entering directory `qdbm' [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr depot.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr curia.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr relic.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr hovel.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr cabin.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr villa.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr vista.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr odeum.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr myconf.c [INFO ] /usr/ccs/bin/ar rcsv libqdbm.a depot.o curia.o relic.o hovel.o cabin.o villa.o vista.o odeum.o myconf.o [ERROR ] ar: writing libqdbm.a [INFO ] a - depot.o [INFO ] a - curia.o [INFO ] a - relic.o [INFO ] a - hovel.o [INFO ] a - cabin.o [INFO ] a - villa.o [INFO ] a - vista.o [INFO ] a - odeum.o [INFO ] a - myconf.o [INFO ] gmake[2]: Leaving directory `qdbm' [INFO ] gmake[2]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../release/lib/compress/compress.a [INFO ] [RANLIB] ../../release/lib/compress/compress.a [INFO ] gmake[2]: Leaving directory `lib/compress' [INFO ] gmake[2]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../release/lib/crypto/crypto.a [INFO ] [RANLIB] ../../release/lib/crypto/crypto.a [INFO ] gmake[2]: Leaving directory `lib/crypto' [INFO ] gmake[2]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../release/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../release/lib/raidfile/raidfile.a [INFO ] gmake[2]: Leaving directory `lib/raidfile' [INFO ] gmake[2]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../release/lib/server/server.a [INFO ] [RANLIB] ../../release/lib/server/server.a [INFO ] gmake[2]: Leaving directory `lib/server' [INFO ] gmake[2]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [ERROR ] In file included from ../../lib/common/FdGetLine.h:15, [ERROR ] from BackupStoreAccountDatabase.cpp:20: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupStoreAccountDatabase.cpp:20: [ERROR ] ../../lib/common/FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function `static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../release/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../release/lib/backupstore/backupstore.a [INFO ] gmake[2]: Leaving directory `lib/backupstore' [INFO ] gmake[2]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [AR] ../../release/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../release/lib/backupclient/backupclient.a [INFO ] gmake[2]: Leaving directory `lib/backupclient' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from BackupDaemon.cpp:74: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupDaemon.cpp:74: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../release/bin/bbackupd/bbackupd [ERROR ] g++: unrecognized option `-rdynamic' [ERROR ] g++: unrecognized option `-rdynamic' [ERROR ] Undefined first referenced [ERROR ] symbol in file [ERROR ] EVP_bf_cfb64 ../../release/lib/crypto/crypto.a(CipherBlowfish.o) [ERROR ] EVP_CIPHER_CTX_iv_length ../../release/lib/crypto/crypto.a(CipherContext.o) [ERROR ] EVP_CIPHER_CTX_block_size ../../release/lib/crypto/crypto.a(CipherContext.o) [ERROR ] ld: fatal: Symbol referencing errors. No output written to ../../release/bin/bbackupd/bbackupd [ERROR ] collect2: ld returned 1 exit status [ERROR ] gmake[1]: *** [../../release/bin/bbackupd/bbackupd] Error 1 [INFO ] gmake[1]: Leaving directory `bin/bbackupd' [ERROR ] make: Fatal error: Command failed for target `release/bin/bbackupd/bbackupd' [INFO ] *** Error code 2 [INFO ] ==> Client build complete -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Sun May 1 17:47:43 2011 From: trac at boxbackup.org (Trac) Date: Sun, 01 May 2011 16:47:43 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2951] Trunk Message-ID: <20110501164743.E1CFB18C52C@www.boxbackup.org> Failed build of Box Backup [2951] --------------------------------------------------------------------- Changeset: 2951 - Committed by: jamesog Build Configuration: Trunk Build Platform: FreeBSD 8.0 amd64 Build Slave: www Build Number: 1719 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] Configuration.cpp: In member function 'bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [INFO ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [INFO ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [INFO ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [INFO ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] Utils [INFO ] [CXX] UnixUser [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 71979): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 71982): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 71990): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 71998): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreFile [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [INFO ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] BackupCommands [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [INFO ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] bbstored [INFO ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8014030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 72208): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 72280): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 72429): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7b is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7b is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0xb has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x74 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x7e [INFO ] WARNING: Object 0x2e is unattached. [INFO ] WARNING: Missing directory 0x5 could be recreated. [INFO ] WARNING: Object 0x2f is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x7f: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0xb has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x74 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x7e [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x2e is unattached. [INFO ] WARNING: Recreating missing directory 0x5 [INFO ] WARNING: Object 0x2f is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x7f: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/02/o03 found [INFO ] WARNING: Directory ID 0xe references object 0x4d which is already contained. [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: Missing directory 0xb could be recreated. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Object 0x49 is unattached. [INFO ] WARNING: Object 0x4a is unattached. [INFO ] WARNING: Object 0x4b is unattached. [INFO ] WARNING: Object 0x4c is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/02/o03 found, deleting [INFO ] WARNING: Directory ID 0xe references object 0x4d which is already contained. [INFO ] WARNING: Fixing directory ID 0xe [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: Recreating missing directory 0xb [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Object 0x49 is unattached. [INFO ] WARNING: Object 0x4a is unattached. [INFO ] WARNING: Object 0x4b is unattached. [INFO ] WARNING: Object 0x4c is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x1b is unattached. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x1b is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/01/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/03/o02 found [INFO ] WARNING: Directory ID 0x9 references object 0x3e which does not exist. [INFO ] WARNING: Directory ID 0x1b has wrong container ID. [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Object 0x8a is unattached. [INFO ] WARNING: Missing directory 0x18 could be recreated. [INFO ] WARNING: Object 0x8b is unattached. [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/01/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/03/o02 found, deleting [INFO ] WARNING: Directory ID 0x9 references object 0x3e which does not exist. [INFO ] WARNING: Fixing directory ID 0x9 [INFO ] WARNING: Directory ID 0x1b has wrong container ID. [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Object 0x8a is unattached. [INFO ] WARNING: Recreating missing directory 0x18 [INFO ] WARNING: Object 0x8b is unattached. [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 72418): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 72568): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 5 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPRequest [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 72741): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 72749): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-linux-gnu [INFO ] checking host system type... x86_64-unknown-linux-gnu [INFO ] checking target system type... x86_64-unknown-linux-gnu [INFO ] checking for gcc... gcc [INFO ] checking for C compiler default output file name... a.out [INFO ] checking whether the C compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C compiler... yes [INFO ] checking whether gcc accepts -g... yes [INFO ] checking for gcc option to accept ISO C89... none needed [INFO ] checking for g++... g++ [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /bin/grep [INFO ] checking for egrep... /bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... -ledit [INFO ] checking editline/readline.h usability... yes [INFO ] checking editline/readline.h presence... yes [INFO ] checking for editline/readline.h... yes [INFO ] checking whether editline supports history... yes [INFO ] checking for editline/readline.h... (cached) yes [INFO ] checking for db.h... 4.4.20 [INFO ] checking for library containing Berkeley DB 4.4.20... -ldb [INFO ] configure: using Berkeley DB version 4.4.20 [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... yes [INFO ] checking execinfo.h presence... yes [INFO ] checking for execinfo.h... yes [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... yes [INFO ] checking sys/xattr.h presence... yes [INFO ] checking for sys/xattr.h... yes [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... yes [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... no [INFO ] checking for struct stat.st_mtimespec... no [INFO ] checking for struct stat.st_atim.tv_nsec... yes [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... no [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... no [INFO ] checking whether INFTIM is declared... no [INFO ] checking whether SO_PEERCRED is declared... yes [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... no [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... no [INFO ] checking sys/endian.h presence... no [INFO ] checking for sys/endian.h... no [INFO ] checking asm/byteorder.h usability... yes [INFO ] checking asm/byteorder.h presence... yes [INFO ] checking for asm/byteorder.h... yes [INFO ] checking for __cpu_to_be64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... yes [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... yes [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... no [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... yes [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... yes [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... yes [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... no [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... no [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... no [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... yes [INFO ] checking for llistxattr... yes [INFO ] checking for getxattr... yes [INFO ] checking for lgetxattr... yes [INFO ] checking for setxattr... yes [INFO ] checking for lsetxattr... yes [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... no [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'Linux'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Generating Compress exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating HTTP exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] Configuring qdbm... [INFO ] Configuring qdbm with: --target= [INFO ] #================================================================ [INFO ] # Configuring QDBM version 1.8.77. [INFO ] #================================================================ [INFO ] checking for gcc... gcc [INFO ] checking for C compiler default output file name... a.out [INFO ] checking whether the C compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C compiler... yes [INFO ] checking whether gcc accepts -g... yes [INFO ] checking for gcc option to accept ANSI C... none needed [INFO ] checking for ld... /usr/bin/ld [INFO ] checking for ar... /usr/bin/ar [INFO ] checking for main in -lc... yes [INFO ] checking for main in -lqdbm... no [INFO ] configure: creating ./config.status [INFO ] config.status: creating Makefile [INFO ] config.status: creating LTmakefile [INFO ] config.status: creating qdbm.spec [INFO ] config.status: creating qdbm.pc [INFO ] #================================================================ [INFO ] # Ready to make. [INFO ] #================================================================ [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: yes [INFO ] Readline: yes [INFO ] Extended attributes: yes Step: tests-release Errors: Executing perl failed (error code 1) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 75476): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 75480): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 75486): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 75494): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 75566): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 75673): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 75751): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x30 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x10 has wrong container ID. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Missing directory 0x1b could be recreated. [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x30 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x10 has wrong container ID. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Recreating missing directory 0x1b [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o10 found [INFO ] WARNING: Directory ID 0x13 references object 0x5e which is already contained. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: Missing directory 0x10 could be recreated. [INFO ] WARNING: Object 0x59 is unattached. [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: Object 0x5d is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o10 found, deleting [INFO ] WARNING: Directory ID 0x13 references object 0x5e which is already contained. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: Recreating missing directory 0x10 [INFO ] WARNING: Object 0x59 is unattached. [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: Object 0x5d is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xc is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xc is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o09 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o4f found [INFO ] WARNING: Directory ID 0xe references object 0x4f which does not exist. [INFO ] WARNING: Directory ID 0xc has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o09 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o4f found, deleting [INFO ] WARNING: Directory ID 0xe references object 0x4f which does not exist. [INFO ] WARNING: Fixing directory ID 0xe [INFO ] WARNING: Directory ID 0xc has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 75745): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 75874): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPRequest [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:187 [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 76046): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 76056): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 57543): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 57547): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 57558): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 57574): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: ...............ERROR: **** TEST FAILURE: Server didn't save PID file at Test.cpp:291 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] timed out! [INFO ] FAILED: 2 tests failed (first at Test.cpp:291) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:412: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 1 seconds [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/lib/intercept/intercept.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:187 [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 58060): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 58073): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:291) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] U . [INFO ] Checked out revision 2585. -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Sun May 1 17:55:11 2011 From: trac at boxbackup.org (Trac) Date: Sun, 01 May 2011 16:55:11 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2951] Trunk Message-ID: <20110501165511.5F85818C650@www.boxbackup.org> Failed build of Box Backup [2951] --------------------------------------------------------------------- Changeset: 2951 - Committed by: jamesog Build Configuration: Trunk Build Platform: CentOS 5 x86_64 Build Slave: centos-vbox Build Number: 1717 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 14220): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 14223): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 14229): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 14236): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] BackupStoreDaemon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0xec927f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 19WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] 0 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 14473): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 14519): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 14677): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 282 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 282 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 14672): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 14795): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 5 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPResponse.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPServer.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 15001): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 15008): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] (cd bin/bbstored; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [ERROR ] HousekeepStoreAccount.cpp: In constructor 'HousekeepStoreAccount::HousekeepStoreAccount(int, const std::string&, int, HousekeepingCallback*)': [ERROR ] HousekeepStoreAccount.cpp:63: error: class 'HousekeepStoreAccount' does not have any field named 'mRefCountsAdjusted' [ERROR ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [ERROR ] HousekeepStoreAccount.cpp:263: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:277: error: 'mRefCountsAdjusted' was not declared in this scope [ERROR ] HousekeepStoreAccount.cpp:293: error: 'mRefCountsAdjusted' was not declared in this scope [ERROR ] HousekeepStoreAccount.cpp:312: error: 'mRefCountsAdjusted' was not declared in this scope [ERROR ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [ERROR ] HousekeepStoreAccount.cpp:471: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:586: warning: comparison between signed and unsigned integer expressions [INFO ] *** Error code 1 [INFO ] Stop in bin/bbstored. [INFO ] *** Error code 1 [INFO ] Stop in . [INFO ] U . [INFO ] Checked out revision 2584. Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17783): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17786): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 17792): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 17800): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 17868): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 17912): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17999): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x231 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x231 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o16 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o16 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/o07 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/o07 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 17994): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 18117): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPResponse.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPServer.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 18324): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 18331): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 83818): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 83823): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 83831): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 83838): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `libqdbm.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:412: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 1 seconds [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `libqdbm.a' is up to date. [INFO ] `../../release/lib/intercept/intercept.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:187 [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 84316): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 84326): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] checking build system type... x86_64-unknown-linux-gnu [INFO ] checking host system type... x86_64-unknown-linux-gnu [INFO ] checking target system type... x86_64-unknown-linux-gnu [INFO ] checking for gcc... gcc [INFO ] checking for C compiler default output file name... a.out [INFO ] checking whether the C compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C compiler... yes [INFO ] checking whether gcc accepts -g... yes [INFO ] checking for gcc option to accept ISO C89... none needed [INFO ] checking for g++... g++ [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /bin/grep [INFO ] checking for egrep... /bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... -ledit [INFO ] checking editline/readline.h usability... yes [INFO ] checking editline/readline.h presence... yes [INFO ] checking for editline/readline.h... yes [INFO ] checking whether editline supports history... yes [INFO ] checking for editline/readline.h... (cached) yes [INFO ] checking for db.h... 4.4.20 [INFO ] checking for library containing Berkeley DB 4.4.20... -ldb [INFO ] configure: using Berkeley DB version 4.4.20 [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... yes [INFO ] checking execinfo.h presence... yes [INFO ] checking for execinfo.h... yes [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... yes [INFO ] checking sys/xattr.h presence... yes [INFO ] checking for sys/xattr.h... yes [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... yes [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... no [INFO ] checking for struct stat.st_mtimespec... no [INFO ] checking for struct stat.st_atim.tv_nsec... yes [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... no [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... no [INFO ] checking whether INFTIM is declared... no [INFO ] checking whether SO_PEERCRED is declared... yes [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... no [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... no [INFO ] checking sys/endian.h presence... no [INFO ] checking for sys/endian.h... no [INFO ] checking asm/byteorder.h usability... yes [INFO ] checking asm/byteorder.h presence... yes [INFO ] checking for asm/byteorder.h... yes [INFO ] checking for __cpu_to_be64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... yes [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... yes [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... no [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... yes [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... yes [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... yes [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... no [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... no [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... no [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... yes [INFO ] checking for llistxattr... yes [INFO ] checking for getxattr... yes [INFO ] checking for lgetxattr... yes [INFO ] checking for setxattr... yes [INFO ] checking for lsetxattr... yes [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... no [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'Linux'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Generating Compress exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating HTTP exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] Configuring qdbm with: static --target= [ERROR ] configure: WARNING: you should use --build, --host, --target [INFO ] #================================================================ [INFO ] # Configuring QDBM version 1.8.77. [INFO ] #================================================================ [INFO ] checking for static-gcc... gcc [INFO ] checking for C compiler default output file name... a.out [INFO ] checking whether the C compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C compiler... yes [INFO ] checking whether gcc accepts -g... yes [INFO ] checking for gcc option to accept ANSI C... none needed [INFO ] checking for ld... /usr/bin/ld [INFO ] checking for ar... /usr/bin/ar [INFO ] checking for main in -lc... yes [INFO ] checking for main in -lqdbm... no [INFO ] configure: creating ./config.status [INFO ] config.status: creating Makefile [INFO ] config.status: creating LTmakefile [INFO ] config.status: creating qdbm.spec [INFO ] config.status: creating qdbm.pc [INFO ] #================================================================ [INFO ] # Ready to make. [INFO ] #================================================================ [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: yes [INFO ] Readline: yes [INFO ] Extended attributes: yes -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Sun May 1 17:55:25 2011 From: trac at boxbackup.org (Trac) Date: Sun, 01 May 2011 16:55:25 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2951] Trunk Message-ID: <20110501165525.C4A6F18C653@www.boxbackup.org> Failed build of Box Backup [2951] --------------------------------------------------------------------- Changeset: 2951 - Committed by: jamesog Build Configuration: Trunk Build Platform: Mac OS X 10.6 Build Slave: jmac Build Number: 1721 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] [RANLIB] win32 [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/win32/win32.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BoxTime [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [INFO ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] DebugPrintf [INFO ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [INFO ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [INFO ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [INFO ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 3.8917e-05 secs late [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 58816): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 58821): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 58827): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 58833): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [INFO ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 59147): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 59191): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] BackupQueries.cpp: In member function ?void BackupQueries::List(int64_t, const std::string&, const bool*, bool)?: [INFO ] BackupQueries.cpp:437: warning: format not a string literal and no format arguments [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 59384): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x510 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x6d [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x55 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x115e [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 6: main+0x173e [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x510 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x6d [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x55 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x115e [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 6: main+0x173e [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x641 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x33 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x358 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0xa52 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x26b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xa27 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 9: main+0x173e [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x74e [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x3b2 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x18c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x32c [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0xa52 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x26b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xa27 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 9: main+0x173e [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x641 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x33 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x358 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0xa52 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x26b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xa27 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 9: main+0x173e [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x74e [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x3b2 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x18c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x32c [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0xa52 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x26b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xa27 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 9: main+0x173e [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 59379): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 59507): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 19 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 59749): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 59756): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23999): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 24002): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 24009): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 24015): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:263: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:471: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:586: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0xfea6f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:412: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 12 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../debug/test/bbackupd/test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 24722): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 24729): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [ERROR ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [ERROR ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [ERROR ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [ERROR ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 72796): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 72805): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 72818): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 72829): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [ERROR ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [ERROR ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [ERROR ] HousekeepStoreAccount.cpp:262: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [ERROR ] HousekeepStoreAccount.cpp:467: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:582: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8013030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:412: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/lib/intercept/intercept.a' is up to date. [INFO ] `../../debug/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../debug/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] `../../debug/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 73507): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 73520): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 5.3844e-05 secs late [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../release/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 62541): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 62546): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 62553): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 62559): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 62631): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 62675): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 62767): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o17 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o17 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 62762): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 62890): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 16 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 63137): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 63144): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] (cd bin/bbstored; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [ERROR ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [ERROR ] HousekeepStoreAccount.cpp:262: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [ERROR ] HousekeepStoreAccount.cpp:467: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:582: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] (cd bin/bbstoreaccounts; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] make -C docs htmlguide/man-html/bbstored.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.html parcels/boxbackup-trunk_2583-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstoreaccounts.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbstoreaccounts.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstoreaccounts.html parcels/boxbackup-trunk_2583-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstored-certs.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored-certs.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-certs.html parcels/boxbackup-trunk_2583-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstored-config.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored-config.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-config.html parcels/boxbackup-trunk_2583-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/raidfile-config.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/raidfile-config.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile-config.html parcels/boxbackup-trunk_2583-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstored.conf.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored.conf.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.conf.html parcels/boxbackup-trunk_2583-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/raidfile.conf.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/raidfile.conf.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile.conf.html parcels/boxbackup-trunk_2583-backup-server-freebsd7.2/docs [INFO ] make -C docs man/bbstored.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbstored.xml [INFO ] [GZIP] man/bbstored.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstoreaccounts.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbstoreaccounts.xml [INFO ] [GZIP] man/bbstoreaccounts.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored-certs.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbstored-certs.xml [INFO ] [GZIP] man/bbstored-certs.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored-config.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbstored-config.xml [INFO ] [GZIP] man/bbstored-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] make -C docs man/raidfile-config.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/raidfile-config.xml [INFO ] [GZIP] man/raidfile-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored.conf.5.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbstored.conf.xml [INFO ] [GZIP] man/bbstored.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] make -C docs man/raidfile.conf.5.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/raidfile.conf.xml [INFO ] [GZIP] man/raidfile.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 || mkdir parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2583-backup-server-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2583-backup-server-freebsd7.2 | gzip -9 - > boxbackup-trunk_2583-backup-server-freebsd7.2.tgz ) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [ERROR ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [ERROR ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [ERROR ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [ERROR ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 92028): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 92033): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 92047): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 92058): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [ERROR ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [ERROR ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [ERROR ] HousekeepStoreAccount.cpp:262: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [ERROR ] HousekeepStoreAccount.cpp:467: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:582: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8013030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:412: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 4 seconds [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/lib/intercept/intercept.a' is up to date. [INFO ] `../../debug/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../debug/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] `../../debug/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:187 [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 92727): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 92742): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Sun May 1 18:03:59 2011 From: trac at boxbackup.org (Trac) Date: Sun, 01 May 2011 17:03:59 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2951] Trunk Message-ID: <20110501170359.9E80918C690@www.boxbackup.org> Failed build of Box Backup [2951] --------------------------------------------------------------------- Changeset: 2951 - Committed by: jamesog Build Configuration: Trunk Build Platform: Debian 4.0 amd64 Build Slave: wildfire Build Number: 1718 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 16578): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 16581): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 16587): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 16594): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [INFO ] [CXX] bbstored.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x2164870 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 16835): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 16894): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17055): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x39 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x39 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 17050): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 17175): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 11 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17385): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 17392): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] (cd bin/bbackupd; make -D RELEASE) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [ERROR ] Timer.cpp: In static member function 'static void Timers::Cleanup()': [ERROR ] Timer.cpp:86: warning: unused variable 'result' [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr depot.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr curia.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr relic.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr hovel.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr cabin.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr villa.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr vista.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr odeum.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr myconf.c [INFO ] /usr/bin/ar rcsv libqdbm.a depot.o curia.o relic.o hovel.o cabin.o villa.o vista.o odeum.o myconf.o [INFO ] a - depot.o [INFO ] a - curia.o [INFO ] a - relic.o [INFO ] a - hovel.o [INFO ] a - cabin.o [INFO ] a - villa.o [INFO ] a - vista.o [INFO ] a - odeum.o [INFO ] a - myconf.o [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupquery; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupctl; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] cp -p COPYING.txt parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] cp -p LICENSE-GPL.txt parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] cp -p LICENSE-DUAL.txt parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] make -C docs htmlguide/man-html/bbackupd.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.html parcels/boxbackup-trunk_2642-backup-client-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbackupquery.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupquery.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupquery.html parcels/boxbackup-trunk_2642-backup-client-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbackupctl.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupctl.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupctl.html parcels/boxbackup-trunk_2642-backup-client-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbackupd-config.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd-config.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd-config.html parcels/boxbackup-trunk_2642-backup-client-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbackupd.conf.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd.conf.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.conf.html parcels/boxbackup-trunk_2642-backup-client-freebsd7.2/docs [INFO ] make -C qdbm static [INFO ] make MYLIBS="libqdbm.a libqdbm.so.14.13.0 libqdbm.so.14 libqdbm.so" LDFLAGS="-static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz" all [INFO ] if uname -a | egrep -i 'SunOS' > /dev/null ; then gcc -shared -Wl,-G,-h,libqdbm.so.14 -o libqdbm.so.14.13.0 depot.o curia.o relic.o hovel.o cabin.o villa.o vista.o odeum.o myconf.o -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lc -lcrypto -lssl -lz ; else gcc -shared -Wl,-soname,libqdbm.so.14 -o libqdbm.so.14.13.0 depot.o curia.o relic.o hovel.o cabin.o villa.o vista.o odeum.o myconf.o -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lc -lcrypto -lssl -lz ; fi [INFO ] ln -f -s libqdbm.so.14.13.0 libqdbm.so.14 [INFO ] ln -f -s libqdbm.so.14.13.0 libqdbm.so [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr dpmgr.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o dpmgr dpmgr.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr dptest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o dptest dptest.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr dptsv.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o dptsv dptsv.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr crmgr.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o crmgr crmgr.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr crtest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o crtest crtest.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr crtsv.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o crtsv crtsv.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr rlmgr.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o rlmgr rlmgr.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr rltest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o rltest rltest.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr hvmgr.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o hvmgr hvmgr.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr hvtest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o hvtest hvtest.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr cbtest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o cbtest cbtest.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr cbcodec.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o cbcodec cbcodec.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr vlmgr.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o vlmgr vlmgr.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr vltest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o vltest vltest.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr vltsv.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o vltsv vltsv.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr odmgr.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o odmgr odmgr.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr odtest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o odtest odtest.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr odidx.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o odidx odidx.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] gcc -c -I. -I/usr/local/include -I/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr qmttest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/jamesog/lib:/usr/local/lib gcc -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr -o qmttest qmttest.o -static -L. -L/usr/local/lib -L/home/jamesog/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -lz [INFO ] #================================================================ [INFO ] # Ready to install. [INFO ] #================================================================ [INFO ] make -C docs man/bbackupd.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbackupd.xml [INFO ] [GZIP] man/bbackupd.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupd.8.gz parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupquery.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbackupquery.xml [INFO ] [GZIP] man/bbackupquery.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupquery.8.gz parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupctl.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbackupctl.xml [INFO ] [GZIP] man/bbackupctl.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupctl.8.gz parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupd-config.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbackupd-config.xml [INFO ] [GZIP] man/bbackupd-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupd-config.8.gz parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupd.conf.5.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbackupd.conf.xml [INFO ] [GZIP] man/bbackupd.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupd.conf.5.gz parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 || mkdir parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-client parcels/boxbackup-trunk_2642-backup-client-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2642-backup-client-freebsd7.2 | gzip -9 - > boxbackup-trunk_2642-backup-client-freebsd7.2.tgz ) [INFO ] (cd bin/bbstored; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [ERROR ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [ERROR ] HousekeepStoreAccount.cpp:263: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [ERROR ] HousekeepStoreAccount.cpp:471: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:586: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] (cd bin/bbstoreaccounts; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp -p COPYING.txt parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp -p LICENSE-GPL.txt parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp -p LICENSE-DUAL.txt parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] make -C docs htmlguide/man-html/bbstored.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.html parcels/boxbackup-trunk_2642-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstoreaccounts.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbstoreaccounts.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstoreaccounts.html parcels/boxbackup-trunk_2642-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstored-certs.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored-certs.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-certs.html parcels/boxbackup-trunk_2642-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstored-config.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored-config.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-config.html parcels/boxbackup-trunk_2642-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/raidfile-config.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/raidfile-config.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile-config.html parcels/boxbackup-trunk_2642-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstored.conf.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored.conf.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.conf.html parcels/boxbackup-trunk_2642-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/raidfile.conf.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/raidfile.conf.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile.conf.html parcels/boxbackup-trunk_2642-backup-server-freebsd7.2/docs [INFO ] make -C docs man/bbstored.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbstored.xml [INFO ] [GZIP] man/bbstored.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstoreaccounts.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbstoreaccounts.xml [INFO ] [GZIP] man/bbstoreaccounts.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored-certs.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbstored-certs.xml [INFO ] [GZIP] man/bbstored-certs.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored-config.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbstored-config.xml [INFO ] [GZIP] man/bbstored-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] make -C docs man/raidfile-config.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/raidfile-config.xml [INFO ] [GZIP] man/raidfile-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored.conf.5.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbstored.conf.xml [INFO ] [GZIP] man/bbstored.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] make -C docs man/raidfile.conf.5.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/raidfile.conf.xml [INFO ] [GZIP] man/raidfile.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 || mkdir parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2642-backup-server-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2642-backup-server-freebsd7.2 | gzip -9 - > boxbackup-trunk_2642-backup-server-freebsd7.2.tgz ) Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20216): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20220): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 20226): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 20232): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 20305): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 20354): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20440): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x51 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x51 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o09 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o09 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 20435): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 20559): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20772): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20779): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From subversion at boxbackup.org Sun May 1 22:15:00 2011 From: subversion at boxbackup.org (subversion at boxbackup.org) Date: Sun, 1 May 2011 22:15:00 +0100 (BST) Subject: [Box Backup-commit] COMMIT r2952 - box/trunk Message-ID: <20110501211500.3B9EB18CBF0@www.boxbackup.org> Author: jamesog Date: 2011-05-01 22:14:59 +0100 (Sun, 01 May 2011) New Revision: 2952 Modified: box/trunk/configure.ac Log: Unbreak Solaris build: skip checking for -rdynamic with gcc as it's broken but yet returns 0 - this causes autoconf to think that the check succeeded when gcc actually threw an error. Bad gcc! Modified: box/trunk/configure.ac =================================================================== --- box/trunk/configure.ac 2011-05-01 16:34:15 UTC (rev 2951) +++ box/trunk/configure.ac 2011-05-01 21:14:59 UTC (rev 2952) @@ -26,18 +26,26 @@ # Use -Wall if we have gcc. This gives better warnings AC_SUBST([CXXFLAGS_STRICT], ['-Wall -Wundef']) - # Check whether gcc supports -rdynamic, thanks to Steve Ellcey - # [http://readlist.com/lists/gcc.gnu.org/gcc/6/31502.html] - # This is needed to get symbols in backtraces. - # Note that this apparently fails on HP-UX - LDFLAGS="$LDFLAGS -rdynamic" - AC_MSG_CHECKING([whether gcc accepts -rdynamic]) - AC_TRY_LINK([], [return 0;], - [AC_MSG_RESULT([yes]); have_rdynamic=yes], - [AC_MSG_RESULT([no])]) - if test x"$have_rdynamic" = x"yes" ; then - AC_SUBST([LDADD_RDYNAMIC], ['-rdynamic']) - fi + # Don't check for gcc -rdynamic on Solaris as it's broken, but returns 0. + case $build_os in + solaris*) + AC_MSG_NOTICE([skipping check for -rdynamic check on Solaris]) + ;; + *) + # Check whether gcc supports -rdynamic, thanks to Steve Ellcey + # [http://readlist.com/lists/gcc.gnu.org/gcc/6/31502.html] + # This is needed to get symbols in backtraces. + # Note that this apparently fails on HP-UX and Solaris + LDFLAGS="$LDFLAGS -rdynamic" + AC_MSG_CHECKING([whether gcc accepts -rdynamic]) + AC_TRY_LINK([], [return 0;], + [AC_MSG_RESULT([yes]); have_rdynamic=yes], + [AC_MSG_RESULT([no])]) + if test x"$have_rdynamic" = x"yes" ; then + AC_SUBST([LDADD_RDYNAMIC], ['-rdynamic']) + fi + ;; + esac fi AC_PATH_PROG([PERL], [perl], [AC_MSG_ERROR([[perl executable was not found]])]) From trac at boxbackup.org Sun May 1 22:15:51 2011 From: trac at boxbackup.org (Trac) Date: Sun, 01 May 2011 21:15:51 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2952] Trunk Message-ID: <20110501211551.642DE18CBFE@www.boxbackup.org> Failed build of Box Backup [2952] --------------------------------------------------------------------- Changeset: 2952 - Committed by: jamesog Build Configuration: Trunk Build Platform: CentOS 5 x86_64 Build Slave: centos-vbox Build Number: 1724 - Failures: Step: configure Errors: Executing ./configure failed (error code 1) Log: [INFO ] ==> Configure start [ERROR ] configure: WARNING: you should use --build, --host, --target [ERROR ] configure: WARNING: invalid host type: ${gcc.cflags} [ERROR ] configure: WARNING: you should use --build, --host, --target [ERROR ] configure: WARNING: invalid host type: ${gcc.cxxflags} [ERROR ] configure: WARNING: you should use --build, --host, --target [ERROR ] configure: WARNING: invalid host type: ${gcc.ldflags} [ERROR ] Invalid configuration `${gcc.cflags}': machine `${gcc.cflags}' not recognized [ERROR ] configure: error: /bin/sh config.sub ${gcc.cflags} failed [INFO ] checking build system type... [INFO ] ==> Configure complete -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Sun May 1 22:16:14 2011 From: trac at boxbackup.org (Trac) Date: Sun, 01 May 2011 21:16:14 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2952] Trunk Message-ID: <20110501211614.A23DF18CC15@www.boxbackup.org> Failed build of Box Backup [2952] --------------------------------------------------------------------- Changeset: 2952 - Committed by: jamesog Build Configuration: Trunk Build Platform: Mac OS X 10.6 Build Slave: jmac Build Number: 1728 - Failures: Step: configure Errors: Executing ./configure failed (error code 1) Log: [INFO ] ==> Configure start [ERROR ] configure: WARNING: you should use --build, --host, --target [ERROR ] configure: WARNING: invalid host type: ${gcc.cflags} [ERROR ] configure: WARNING: you should use --build, --host, --target [ERROR ] configure: WARNING: invalid host type: ${gcc.cxxflags} [ERROR ] configure: WARNING: you should use --build, --host, --target [ERROR ] configure: WARNING: invalid host type: ${gcc.ldflags} [ERROR ] Invalid configuration `${gcc.cflags}': machine `${gcc.cflags}' not recognized [ERROR ] configure: error: /bin/sh ./config.sub ${gcc.cflags} failed [INFO ] checking build system type... [INFO ] ==> Configure complete -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Sun May 1 22:32:22 2011 From: trac at boxbackup.org (Trac) Date: Sun, 01 May 2011 21:32:22 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2952] Trunk Message-ID: <20110501213222.4F5BF18E41D@www.boxbackup.org> Failed build of Box Backup [2952] --------------------------------------------------------------------- Changeset: 2952 - Committed by: jamesog Build Configuration: Trunk Build Platform: FreeBSD 8.0 amd64 Build Slave: www Build Number: 1726 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] Configuration.cpp: In member function 'bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [INFO ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [INFO ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [INFO ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [INFO ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] GetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] ConversionString [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] SocketStream [INFO ] [CXX] Socket [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 91816): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 91820): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 91827): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 91864): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [INFO ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [INFO ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] bbstored [INFO ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8014030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 92074): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 92162): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 92319): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x35 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x35 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x2f which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x2f which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 92313): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 92436): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 5 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cencode [INFO ] [CXX] S3Client [INFO ] [CXX] cdecode [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPRequest [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 92638): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 92647): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] (cd bin/bbstored; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [ERROR ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [ERROR ] HousekeepStoreAccount.cpp:262: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [ERROR ] HousekeepStoreAccount.cpp:467: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:582: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] (cd bin/bbstoreaccounts; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] make -C docs htmlguide/man-html/bbstored.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.html parcels/boxbackup-trunk_2554-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstoreaccounts.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbstoreaccounts.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstoreaccounts.html parcels/boxbackup-trunk_2554-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstored-certs.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored-certs.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-certs.html parcels/boxbackup-trunk_2554-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstored-config.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored-config.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-config.html parcels/boxbackup-trunk_2554-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/raidfile-config.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/raidfile-config.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile-config.html parcels/boxbackup-trunk_2554-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstored.conf.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored.conf.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.conf.html parcels/boxbackup-trunk_2554-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/raidfile.conf.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/raidfile.conf.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile.conf.html parcels/boxbackup-trunk_2554-backup-server-freebsd7.2/docs [INFO ] make -C docs man/bbstored.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbstored.xml [INFO ] [GZIP] man/bbstored.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstoreaccounts.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbstoreaccounts.xml [INFO ] [GZIP] man/bbstoreaccounts.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored-certs.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbstored-certs.xml [INFO ] [GZIP] man/bbstored-certs.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored-config.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbstored-config.xml [INFO ] [GZIP] man/bbstored-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] make -C docs man/raidfile-config.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/raidfile-config.xml [INFO ] [GZIP] man/raidfile-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored.conf.5.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbstored.conf.xml [INFO ] [GZIP] man/bbstored.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] make -C docs man/raidfile.conf.5.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/raidfile.conf.xml [INFO ] [GZIP] man/raidfile.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 || mkdir parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2554-backup-server-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2554-backup-server-freebsd7.2 | gzip -9 - > boxbackup-trunk_2554-backup-server-freebsd7.2.tgz ) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [ERROR ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [ERROR ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [ERROR ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [ERROR ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 84188): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 84193): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 84200): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 84212): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [ERROR ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [ERROR ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [ERROR ] HousekeepStoreAccount.cpp:262: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [ERROR ] HousekeepStoreAccount.cpp:467: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:582: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8013030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:412: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: ...............ERROR: **** TEST FAILURE: Server didn't save PID file at Test.cpp:291 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] timed out! [INFO ] FAILED: 2 tests failed (first at Test.cpp:291) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 4 seconds [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/lib/intercept/intercept.a' is up to date. [INFO ] `../../debug/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../debug/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] `../../debug/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:187 [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 84886): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 84896): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:291) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 95382): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 95389): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 95402): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 95412): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 95484): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 95558): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 95646): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x4b is unattached. [INFO ] WARNING: Object 0x4b is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x4b is unattached. [INFO ] WARNING: Object 0x4b is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 references object 0x42 which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x45 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: Object 0x2e is unattached. [INFO ] WARNING: Missing directory 0x5 could be recreated. [INFO ] WARNING: Object 0x2f is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x46: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 references object 0x42 which does not exist. [INFO ] WARNING: Fixing directory ID 0x9 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x45 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: Object 0x2e is unattached. [INFO ] WARNING: Recreating missing directory 0x5 [INFO ] WARNING: Object 0x2f is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x46: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o13 found [INFO ] WARNING: Directory ID 0x19 references object 0x6f which is already contained. [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: Missing directory 0x13 could be recreated. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x69 is unattached. [INFO ] WARNING: Object 0x6a is unattached. [INFO ] WARNING: Object 0x6b is unattached. [INFO ] WARNING: Object 0x6c is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o13 found, deleting [INFO ] WARNING: Directory ID 0x19 references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x19 [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: Recreating missing directory 0x13 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x69 is unattached. [INFO ] WARNING: Object 0x6a is unattached. [INFO ] WARNING: Object 0x6b is unattached. [INFO ] WARNING: Object 0x6c is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x16 is unattached. [INFO ] WARNING: Object 0x6d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x16 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x6d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o0e found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o5f found [INFO ] WARNING: Directory ID 0x11 references object 0x5f which does not exist. [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: Missing directory 0xe could be recreated. [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o0e found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o5f found, deleting [INFO ] WARNING: Directory ID 0x11 references object 0x5f which does not exist. [INFO ] WARNING: Fixing directory ID 0x11 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: Recreating missing directory 0xe [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 95640): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 95755): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPRequest [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 95932): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 95940): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Sun May 1 22:32:24 2011 From: trac at boxbackup.org (Trac) Date: Sun, 01 May 2011 21:32:24 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2952] Trunk Message-ID: <20110501213224.C0D7C18E420@www.boxbackup.org> Failed build of Box Backup [2952] --------------------------------------------------------------------- Changeset: 2952 - Committed by: jamesog Build Configuration: Trunk Build Platform: Solaris 10 x86 Build Slave: solaris-vbox Build Number: 1729 - Failures: Step: build-client Errors: Executing make failed (error code 1) Log: [INFO ] ==> Client build start [INFO ] (cd bin/bbackupd; gmake RELEASE=1) [INFO ] gmake[1]: Entering directory `bin/bbackupd' [INFO ] gmake[2]: Entering directory `lib/win32' [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../release/lib/win32/win32.a [INFO ] [RANLIB] ../../release/lib/win32/win32.a [INFO ] gmake[2]: Leaving directory `lib/win32' [INFO ] gmake[2]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [ERROR ] In file included from FdGetLine.h:15, [ERROR ] from Configuration.cpp:21: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from Configuration.cpp:21: [ERROR ] FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [ERROR ] Configuration.cpp: In member function `bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [ERROR ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [ERROR ] In file included from FdGetLine.h:15, [ERROR ] from FdGetLine.cpp:18: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from FdGetLine.cpp:18: [ERROR ] FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [ERROR ] In file included from GetLine.cpp:18: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [ERROR ] In file included from IOStreamGetLine.h:15, [ERROR ] from IOStreamGetLine.cpp:11: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from IOStreamGetLine.cpp:11: [ERROR ] IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [ERROR ] Timer.cpp: In static member function `static void Timers::Cleanup()': [ERROR ] Timer.cpp:86: warning: unused variable 'result' [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../release/lib/common/common.a [INFO ] [RANLIB] ../../release/lib/common/common.a [INFO ] gmake[2]: Leaving directory `lib/common' [INFO ] gmake[2]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../release/lib/compress/compress.a [INFO ] [RANLIB] ../../release/lib/compress/compress.a [INFO ] gmake[2]: Leaving directory `lib/compress' [INFO ] gmake[2]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../release/lib/crypto/crypto.a [INFO ] [RANLIB] ../../release/lib/crypto/crypto.a [INFO ] gmake[2]: Leaving directory `lib/crypto' [INFO ] gmake[2]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../release/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../release/lib/raidfile/raidfile.a [INFO ] gmake[2]: Leaving directory `lib/raidfile' [INFO ] gmake[2]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../release/lib/server/server.a [INFO ] [RANLIB] ../../release/lib/server/server.a [INFO ] gmake[2]: Leaving directory `lib/server' [INFO ] gmake[2]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [ERROR ] In file included from ../../lib/common/FdGetLine.h:15, [ERROR ] from BackupStoreAccountDatabase.cpp:20: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupStoreAccountDatabase.cpp:20: [ERROR ] ../../lib/common/FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function `static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../release/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../release/lib/backupstore/backupstore.a [INFO ] gmake[2]: Leaving directory `lib/backupstore' [INFO ] gmake[2]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [AR] ../../release/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../release/lib/backupclient/backupclient.a [INFO ] gmake[2]: Leaving directory `lib/backupclient' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from BackupDaemon.cpp:74: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupDaemon.cpp:74: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../release/bin/bbackupd/bbackupd [ERROR ] ld: warning: file ../../qdbm/libqdbm.a(depot.o): wrong ELF class: ELFCLASS32 [ERROR ] Undefined first referenced [ERROR ] symbol in file [ERROR ] dpput ../../release/bin/bbackupd/BackupClientInodeToIDMap.o [ERROR ] dpopen ../../release/bin/bbackupd/BackupClientInodeToIDMap.o [ERROR ] dperrmsg ../../release/bin/bbackupd/BackupClientInodeToIDMap.o [ERROR ] dpecodeptr ../../release/bin/bbackupd/BackupClientInodeToIDMap.o [ERROR ] dpclose ../../release/bin/bbackupd/BackupClientInodeToIDMap.o [ERROR ] dpgetwb ../../release/bin/bbackupd/BackupClientInodeToIDMap.o [ERROR ] dpversion ../../release/lib/server/server.a(Daemon.o) [ERROR ] ld: fatal: Symbol referencing errors. No output written to ../../release/bin/bbackupd/bbackupd [ERROR ] collect2: ld returned 1 exit status [ERROR ] gmake[1]: *** [../../release/bin/bbackupd/bbackupd] Error 1 [INFO ] gmake[1]: Leaving directory `bin/bbackupd' [ERROR ] make: Fatal error: Command failed for target `release/bin/bbackupd/bbackupd' [INFO ] *** Error code 2 [INFO ] ==> Client build complete -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Sun May 1 22:41:45 2011 From: trac at boxbackup.org (Trac) Date: Sun, 01 May 2011 21:41:45 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2952] Trunk Message-ID: <20110501214145.493B718E448@www.boxbackup.org> Failed build of Box Backup [2952] --------------------------------------------------------------------- Changeset: 2952 - Committed by: jamesog Build Configuration: Trunk Build Platform: Mac OS X 10.6 Build Slave: jmac Build Number: 1728 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] getopt_long [INFO ] [CXX] emu [INFO ] [AR] win32 [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] [RANLIB] win32 [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/win32/win32.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [INFO ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [INFO ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [INFO ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [INFO ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 3.3483e-05 secs late [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 74568): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 74571): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 74577): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 74583): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [INFO ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 74897): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 74943): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] BackupQueries.cpp: In member function ?void BackupQueries::List(int64_t, const std::string&, const bool*, bool)?: [INFO ] BackupQueries.cpp:437: warning: format not a string literal and no format arguments [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 75141): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x510 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x6d [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x55 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x115e [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 6: main+0x173e [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x510 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x6d [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x55 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x115e [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 6: main+0x173e [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x641 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x33 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x358 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0xa52 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x26b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xa27 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 9: main+0x173e [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x74e [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x3b2 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x18c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x32c [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0xa52 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x26b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xa27 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 9: main+0x173e [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x641 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x33 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x358 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0xa52 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x26b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xa27 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 9: main+0x173e [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x74e [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x3b2 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x18c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x32c [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0xa52 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x26b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xa27 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 9: main+0x173e [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 75136): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 75267): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 15 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Connection reset by peer (54) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 75504): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 75511): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] (cd bin/bbackupd; make -D RELEASE) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [ERROR ] Timer.cpp: In static member function 'static void Timers::Cleanup()': [ERROR ] Timer.cpp:86: warning: unused variable 'result' [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] mkdir -p parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupquery; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] mkdir -p parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupctl; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] mkdir -p parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] make -C docs htmlguide/man-html/bbackupd.html [INFO ] xsltproc -o htmlguide/man-html/bbackupd.html docbook/bb-nochunk-book.xsl docbook/bbackupd.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd [INFO ] mkdir -p parcels/boxbackup-trunk_2546-backup-client-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.html parcels/boxbackup-trunk_2546-backup-client-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbackupquery.html [INFO ] xsltproc -o htmlguide/man-html/bbackupquery.html docbook/bb-nochunk-book.xsl docbook/bbackupquery.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupquery [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupquery [INFO ] mkdir -p parcels/boxbackup-trunk_2546-backup-client-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupquery.html parcels/boxbackup-trunk_2546-backup-client-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbackupctl.html [INFO ] xsltproc -o htmlguide/man-html/bbackupctl.html docbook/bb-nochunk-book.xsl docbook/bbackupctl.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupctl [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupctl [INFO ] mkdir -p parcels/boxbackup-trunk_2546-backup-client-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupctl.html parcels/boxbackup-trunk_2546-backup-client-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbackupd-config.html [INFO ] xsltproc -o htmlguide/man-html/bbackupd-config.html docbook/bb-nochunk-book.xsl docbook/bbackupd-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd-config [INFO ] mkdir -p parcels/boxbackup-trunk_2546-backup-client-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd-config.html parcels/boxbackup-trunk_2546-backup-client-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbackupd.conf.html [INFO ] xsltproc -o htmlguide/man-html/bbackupd.conf.html docbook/bb-nochunk-book.xsl docbook/bbackupd.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd.conf [INFO ] mkdir -p parcels/boxbackup-trunk_2546-backup-client-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.conf.html parcels/boxbackup-trunk_2546-backup-client-freebsd7.2/docs [INFO ] make -C docs man/bbackupd.8.gz [INFO ] xsltproc -o man/bbackupd.8 docbook/bb-man.xsl docbook/bbackupd.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd [ERROR ] Note: meta date : no date; using generated date bbackupd [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd [ERROR ] Note: Writing bbackupd.8 [INFO ] gzip man/bbackupd.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupd.8.gz parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupquery.8.gz [INFO ] xsltproc -o man/bbackupquery.8 docbook/bb-man.xsl docbook/bbackupquery.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupquery [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupquery [ERROR ] Note: meta date : no date; using generated date bbackupquery [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupquery [ERROR ] Note: Writing bbackupquery.8 [INFO ] gzip man/bbackupquery.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupquery.8.gz parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupctl.8.gz [INFO ] xsltproc -o man/bbackupctl.8 docbook/bb-man.xsl docbook/bbackupctl.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupctl [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupctl [ERROR ] Note: meta date : no date; using generated date bbackupctl [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupctl [ERROR ] Note: Writing bbackupctl.8 [INFO ] gzip man/bbackupctl.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupctl.8.gz parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupd-config.8.gz [INFO ] xsltproc -o man/bbackupd-config.8 docbook/bb-man.xsl docbook/bbackupd-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd-config [ERROR ] Note: meta date : no date; using generated date bbackupd-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd-config [ERROR ] Note: Writing bbackupd-config.8 [INFO ] gzip man/bbackupd-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupd-config.8.gz parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupd.conf.5.gz [INFO ] xsltproc -o man/bbackupd.conf.5 docbook/bb-man.xsl docbook/bbackupd.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd.conf [ERROR ] Note: meta date : no date; using generated date bbackupd.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd.conf [ERROR ] Note: Writing bbackupd.conf.5 [INFO ] gzip man/bbackupd.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupd.conf.5.gz parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 || mkdir parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-client parcels/boxbackup-trunk_2546-backup-client-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2546-backup-client-freebsd7.2 | gzip -9 - > boxbackup-trunk_2546-backup-client-freebsd7.2.tgz ) [INFO ] (cd bin/bbstored; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [ERROR ] BackupStoreRefCountDatabase.cpp: In static member function 'static void BackupStoreRefCountDatabase::Create(const BackupStoreAccountDatabase::Entry&, bool)': [ERROR ] BackupStoreRefCountDatabase.cpp:91: error: 'FileExists' was not declared in this scope [INFO ] *** Error code 1 [INFO ] Stop in lib/backupstore. [INFO ] *** Error code 1 [INFO ] Stop. [INFO ] *** Error code 1 [INFO ] Stop in . Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../release/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 78299): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 78302): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 78308): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 78314): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 78387): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 78438): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 78533): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o17 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o17 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 78528): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 78664): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 24 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 78944): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 78951): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no [INFO ] (cd bin/bbackupd; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] make[2]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../release/lib/win32/win32.a [INFO ] [RANLIB] ../../release/lib/win32/win32.a [INFO ] make[2]: Leaving directory `lib/win32' [INFO ] make[2]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [ERROR ] Timer.cpp: In static member function ?static void Timers::Cleanup()?: [ERROR ] Timer.cpp:86: warning: unused variable ?result? [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../release/lib/common/common.a [INFO ] [RANLIB] ../../release/lib/common/common.a [INFO ] make[2]: Leaving directory `lib/common' [INFO ] make[2]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../release/lib/compress/compress.a [INFO ] [RANLIB] ../../release/lib/compress/compress.a [INFO ] make[2]: Leaving directory `lib/compress' [INFO ] make[2]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../release/lib/crypto/crypto.a [INFO ] [RANLIB] ../../release/lib/crypto/crypto.a [INFO ] make[2]: Leaving directory `lib/crypto' [INFO ] make[2]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../release/lib/server/server.a [INFO ] [RANLIB] ../../release/lib/server/server.a [INFO ] make[2]: Leaving directory `lib/server' [INFO ] make[2]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../release/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../release/lib/backupclient/backupclient.a [INFO ] make[2]: Leaving directory `lib/backupclient' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../release/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] (cd bin/bbackupquery; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../release/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] (cd bin/bbackupctl; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../release/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] cp -p COPYING.txt parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] cp -p LICENSE-GPL.txt parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] cp -p LICENSE-DUAL.txt parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] make -C docs htmlguide/man-html/bbackupd.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.html parcels/boxbackup-trunk_2621-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupquery.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupquery.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupquery.html parcels/boxbackup-trunk_2621-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupctl.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupctl.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupctl.html parcels/boxbackup-trunk_2621-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupd-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd-config.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd-config.html parcels/boxbackup-trunk_2621-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupd.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd.conf.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.conf.html parcels/boxbackup-trunk_2621-backup-client-linux-gnu/docs [INFO ] make -C qdbm [INFO ] make[1]: Entering directory `qdbm' [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops depot.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops curia.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops relic.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops hovel.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops cabin.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops villa.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops vista.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops odeum.c [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops myconf.c [INFO ] /usr/bin/ar rcsv libqdbm.a depot.o curia.o relic.o hovel.o cabin.o villa.o vista.o odeum.o myconf.o [INFO ] a - depot.o [INFO ] a - curia.o [INFO ] a - relic.o [INFO ] a - hovel.o [INFO ] a - cabin.o [INFO ] a - villa.o [INFO ] a - vista.o [INFO ] a - odeum.o [INFO ] a - myconf.o [INFO ] if uname -a | egrep -i 'SunOS' > /dev/null ; \ [INFO ] then \ [INFO ] gcc -shared -Wl,-G,-h,libqdbm.so.14 -o libqdbm.so.14.13.0 depot.o curia.o relic.o hovel.o cabin.o villa.o vista.o odeum.o myconf.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lc -lcrypto -lssl -ldb -lz -ledit ; \ [INFO ] else \ [INFO ] gcc -shared -Wl,-soname,libqdbm.so.14 -o libqdbm.so.14.13.0 depot.o curia.o relic.o hovel.o cabin.o villa.o vista.o odeum.o myconf.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lc -lcrypto -lssl -ldb -lz -ledit ; \ [INFO ] fi [INFO ] ln -f -s libqdbm.so.14.13.0 libqdbm.so.14 [INFO ] ln -f -s libqdbm.so.14.13.0 libqdbm.so [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops dpmgr.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o dpmgr dpmgr.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops dptest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o dptest dptest.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops dptsv.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o dptsv dptsv.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops crmgr.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o crmgr crmgr.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops crtest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o crtest crtest.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops crtsv.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o crtsv crtsv.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops rlmgr.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o rlmgr rlmgr.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops rltest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o rltest rltest.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops hvmgr.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o hvmgr hvmgr.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops hvtest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o hvtest hvtest.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops cbtest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o cbtest cbtest.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops cbcodec.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o cbcodec cbcodec.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops vlmgr.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o vlmgr vlmgr.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops vltest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o vltest vltest.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops vltsv.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o vltsv vltsv.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops odmgr.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o odmgr odmgr.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops odtest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o odtest odtest.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops odidx.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o odidx odidx.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] gcc -c -I. -I/usr/local/include -I/home/bitten/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops qmttest.c [INFO ] LD_RUN_PATH=/lib:/usr/lib:/usr/local/lib:/home/bitten/lib:/usr/local/lib gcc -Wall -pedantic -fPIC -fsigned-char -O3 -fomit-frame-pointer -fforce-addr -minline-all-stringops -o qmttest qmttest.o -L. -L/usr/local/lib -L/home/bitten/lib -L/usr/local/lib -lqdbm -lc -lcrypto -lssl -ldb -lz -ledit [INFO ] #================================================================ [INFO ] # Ready to install. [INFO ] #================================================================ [INFO ] make[1]: Leaving directory `qdbm' [INFO ] make -C docs man/bbackupd.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbackupd.xml [INFO ] [GZIP] man/bbackupd.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.8.gz parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] make -C docs man/bbackupquery.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbackupquery.xml [INFO ] [GZIP] man/bbackupquery.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupquery.8.gz parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] make -C docs man/bbackupctl.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbackupctl.xml [INFO ] [GZIP] man/bbackupctl.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupctl.8.gz parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbackupd-config.xml [INFO ] [GZIP] man/bbackupd-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd-config.8.gz parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbackupd.conf.xml [INFO ] [GZIP] man/bbackupd.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.conf.5.gz parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2621-backup-client-linux-gnu || mkdir parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] cp parcels/scripts/install-backup-client parcels/boxbackup-trunk_2621-backup-client-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2621-backup-client-linux-gnu | gzip -9 - > boxbackup-trunk_2621-backup-client-linux-gnu.tgz ) -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Sun May 1 22:42:16 2011 From: trac at boxbackup.org (Trac) Date: Sun, 01 May 2011 21:42:16 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2952] Trunk Message-ID: <20110501214216.CFFF718E45C@www.boxbackup.org> Failed build of Box Backup [2952] --------------------------------------------------------------------- Changeset: 2952 - Committed by: jamesog Build Configuration: Trunk Build Platform: Debian 4.0 amd64 Build Slave: wildfire Build Number: 1725 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [CXX] CompressStream.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 30882): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 30885): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 30892): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 30901): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [INFO ] [CXX] bbstored.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x27b4870 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 31139): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 31188): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 31346): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x39 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x39 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 282 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 282 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 31341): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 31468): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 13 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 31713): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 31720): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] U . [INFO ] Checked out revision 2621. [INFO ] U . [INFO ] Checked out revision 2546. Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 2055): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 2058): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 2064): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 2070): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 2143): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 2192): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 2285): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x51 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x51 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o09 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o09 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 2280): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 2405): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 2645): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 2652): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no [INFO ] (cd bin/bbstored; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] make[2]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../release/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../release/lib/raidfile/raidfile.a [INFO ] make[2]: Leaving directory `lib/raidfile' [INFO ] make[2]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../release/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../release/lib/backupstore/backupstore.a [INFO ] make[2]: Leaving directory `lib/backupstore' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:263: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:471: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:586: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../release/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] (cd bin/bbstoreaccounts; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../release/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp -p COPYING.txt parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp -p LICENSE-GPL.txt parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp -p LICENSE-DUAL.txt parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] make -C docs htmlguide/man-html/bbstored.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.html parcels/boxbackup-trunk_2621-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstoreaccounts.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstoreaccounts.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstoreaccounts.html parcels/boxbackup-trunk_2621-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored-certs.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored-certs.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-certs.html parcels/boxbackup-trunk_2621-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored-config.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-config.html parcels/boxbackup-trunk_2621-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/raidfile-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/raidfile-config.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile-config.html parcels/boxbackup-trunk_2621-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored.conf.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.conf.html parcels/boxbackup-trunk_2621-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/raidfile.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/raidfile.conf.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile.conf.html parcels/boxbackup-trunk_2621-backup-server-linux-gnu/docs [INFO ] make -C docs man/bbstored.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored.xml [INFO ] [GZIP] man/bbstored.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] make -C docs man/bbstoreaccounts.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstoreaccounts.xml [INFO ] [GZIP] man/bbstoreaccounts.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-certs.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored-certs.xml [INFO ] [GZIP] man/bbstored-certs.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored-config.xml [INFO ] [GZIP] man/bbstored-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] make -C docs man/raidfile-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/raidfile-config.xml [INFO ] [GZIP] man/raidfile-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] make -C docs man/bbstored.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored.conf.xml [INFO ] [GZIP] man/bbstored.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] make -C docs man/raidfile.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/raidfile.conf.xml [INFO ] [GZIP] man/raidfile.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2621-backup-server-linux-gnu || mkdir parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2621-backup-server-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2621-backup-server-linux-gnu | gzip -9 - > boxbackup-trunk_2621-backup-server-linux-gnu.tgz ) -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Sun May 1 22:46:45 2011 From: trac at boxbackup.org (Trac) Date: Sun, 01 May 2011 21:46:45 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2952] Trunk Message-ID: <20110501214645.BE58518E472@www.boxbackup.org> Failed build of Box Backup [2952] --------------------------------------------------------------------- Changeset: 2952 - Committed by: jamesog Build Configuration: Trunk Build Platform: CentOS 5 x86_64 Build Slave: centos-vbox Build Number: 1724 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 29225): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 29228): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 29235): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 29242): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] BackupStoreDaemon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0xb2d97f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 29478): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 29524): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 29682): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 29677): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 29806): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 4 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPResponse.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPServer.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 30012): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 30019): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] U . [INFO ] Checked out revision 2544. Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 335): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 338): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 344): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 351): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 420): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 465): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 551): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x231 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x231 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o16 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o16 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/o07 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/o07 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 546): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 676): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPResponse.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPServer.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 883): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 890): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no [INFO ] (cd bin/bbackupd; make -D RELEASE) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [ERROR ] Timer.cpp: In static member function 'static void Timers::Cleanup()': [ERROR ] Timer.cpp:86: warning: unused variable 'result' [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] mkdir -p parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupquery; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] mkdir -p parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupctl; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] mkdir -p parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] make -C docs htmlguide/man-html/bbackupd.html [INFO ] xsltproc -o htmlguide/man-html/bbackupd.html docbook/bb-nochunk-book.xsl docbook/bbackupd.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd [INFO ] mkdir -p parcels/boxbackup-trunk_2541-backup-client-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.html parcels/boxbackup-trunk_2541-backup-client-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbackupquery.html [INFO ] xsltproc -o htmlguide/man-html/bbackupquery.html docbook/bb-nochunk-book.xsl docbook/bbackupquery.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupquery [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupquery [INFO ] mkdir -p parcels/boxbackup-trunk_2541-backup-client-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupquery.html parcels/boxbackup-trunk_2541-backup-client-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbackupctl.html [INFO ] xsltproc -o htmlguide/man-html/bbackupctl.html docbook/bb-nochunk-book.xsl docbook/bbackupctl.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupctl [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupctl [INFO ] mkdir -p parcels/boxbackup-trunk_2541-backup-client-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupctl.html parcels/boxbackup-trunk_2541-backup-client-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbackupd-config.html [INFO ] xsltproc -o htmlguide/man-html/bbackupd-config.html docbook/bb-nochunk-book.xsl docbook/bbackupd-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd-config [INFO ] mkdir -p parcels/boxbackup-trunk_2541-backup-client-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd-config.html parcels/boxbackup-trunk_2541-backup-client-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbackupd.conf.html [INFO ] xsltproc -o htmlguide/man-html/bbackupd.conf.html docbook/bb-nochunk-book.xsl docbook/bbackupd.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd.conf [INFO ] mkdir -p parcels/boxbackup-trunk_2541-backup-client-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.conf.html parcels/boxbackup-trunk_2541-backup-client-freebsd7.2/docs [INFO ] make -C docs man/bbackupd.8.gz [INFO ] xsltproc -o man/bbackupd.8 docbook/bb-man.xsl docbook/bbackupd.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd [ERROR ] Note: meta date : no date; using generated date bbackupd [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd [ERROR ] Note: Writing bbackupd.8 [INFO ] gzip man/bbackupd.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupd.8.gz parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupquery.8.gz [INFO ] xsltproc -o man/bbackupquery.8 docbook/bb-man.xsl docbook/bbackupquery.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupquery [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupquery [ERROR ] Note: meta date : no date; using generated date bbackupquery [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupquery [ERROR ] Note: Writing bbackupquery.8 [INFO ] gzip man/bbackupquery.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupquery.8.gz parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupctl.8.gz [INFO ] xsltproc -o man/bbackupctl.8 docbook/bb-man.xsl docbook/bbackupctl.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupctl [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupctl [ERROR ] Note: meta date : no date; using generated date bbackupctl [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupctl [ERROR ] Note: Writing bbackupctl.8 [INFO ] gzip man/bbackupctl.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupctl.8.gz parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupd-config.8.gz [INFO ] xsltproc -o man/bbackupd-config.8 docbook/bb-man.xsl docbook/bbackupd-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd-config [ERROR ] Note: meta date : no date; using generated date bbackupd-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd-config [ERROR ] Note: Writing bbackupd-config.8 [INFO ] gzip man/bbackupd-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupd-config.8.gz parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupd.conf.5.gz [INFO ] xsltproc -o man/bbackupd.conf.5 docbook/bb-man.xsl docbook/bbackupd.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd.conf [ERROR ] Note: meta date : no date; using generated date bbackupd.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd.conf [ERROR ] Note: Writing bbackupd.conf.5 [INFO ] gzip man/bbackupd.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupd.conf.5.gz parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 || mkdir parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-client parcels/boxbackup-trunk_2541-backup-client-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2541-backup-client-freebsd7.2 | gzip -9 - > boxbackup-trunk_2541-backup-client-freebsd7.2.tgz ) -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 11:36:42 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 10:36:42 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2952] Trunk Message-ID: <20110502103642.BE6C618EC0E@www.boxbackup.org> Failed build of Box Backup [2952] --------------------------------------------------------------------- Changeset: 2952 - Committed by: jamesog Build Configuration: Trunk Build Platform: Solaris 10 x86 Build Slave: solaris-vbox Build Number: 1729 - Failures: Step: build-client Errors: Executing make failed (error code 1) Log: [INFO ] ==> Client build start [INFO ] (cd bin/bbackupd; gmake RELEASE=1) [INFO ] gmake[1]: Entering directory `bin/bbackupd' [INFO ] gmake[2]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../release/lib/win32/win32.a [INFO ] [RANLIB] ../../release/lib/win32/win32.a [INFO ] gmake[2]: Leaving directory `lib/win32' [INFO ] gmake[2]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [ERROR ] In file included from FdGetLine.h:15, [ERROR ] from Configuration.cpp:21: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from Configuration.cpp:21: [ERROR ] FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [ERROR ] Configuration.cpp: In member function `bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [ERROR ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [ERROR ] In file included from FdGetLine.h:15, [ERROR ] from FdGetLine.cpp:18: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from FdGetLine.cpp:18: [ERROR ] FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [ERROR ] In file included from GetLine.cpp:18: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [ERROR ] In file included from IOStreamGetLine.h:15, [ERROR ] from IOStreamGetLine.cpp:11: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from IOStreamGetLine.cpp:11: [ERROR ] IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [ERROR ] Timer.cpp: In static member function `static void Timers::Cleanup()': [ERROR ] Timer.cpp:86: warning: unused variable 'result' [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../release/lib/common/common.a [INFO ] [RANLIB] ../../release/lib/common/common.a [INFO ] gmake[2]: Leaving directory `lib/common' [INFO ] gmake[2]: Entering directory `qdbm' [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -m64 -I/usr/local/include -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr depot.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -m64 -I/usr/local/include -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr curia.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -m64 -I/usr/local/include -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr relic.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -m64 -I/usr/local/include -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr hovel.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -m64 -I/usr/local/include -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr cabin.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -m64 -I/usr/local/include -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr villa.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -m64 -I/usr/local/include -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr vista.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -m64 -I/usr/local/include -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr odeum.c [INFO ] gcc -c -I. -I/usr/local/include -I/export/home/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -m64 -I/usr/local/include -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr -O1 -fno-omit-frame-pointer -fno-force-addr myconf.c [INFO ] /usr/ccs/bin/ar rcsv libqdbm.a depot.o curia.o relic.o hovel.o cabin.o villa.o vista.o odeum.o myconf.o [ERROR ] ar: writing libqdbm.a [INFO ] a - depot.o [INFO ] a - curia.o [INFO ] a - relic.o [INFO ] a - hovel.o [INFO ] a - cabin.o [INFO ] a - villa.o [INFO ] a - vista.o [INFO ] a - odeum.o [INFO ] a - myconf.o [INFO ] gmake[2]: Leaving directory `qdbm' [INFO ] gmake[2]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../release/lib/compress/compress.a [INFO ] [RANLIB] ../../release/lib/compress/compress.a [INFO ] gmake[2]: Leaving directory `lib/compress' [INFO ] gmake[2]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../release/lib/crypto/crypto.a [INFO ] [RANLIB] ../../release/lib/crypto/crypto.a [INFO ] gmake[2]: Leaving directory `lib/crypto' [INFO ] gmake[2]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../release/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../release/lib/raidfile/raidfile.a [INFO ] gmake[2]: Leaving directory `lib/raidfile' [INFO ] gmake[2]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../release/lib/server/server.a [INFO ] [RANLIB] ../../release/lib/server/server.a [INFO ] gmake[2]: Leaving directory `lib/server' [INFO ] gmake[2]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [ERROR ] In file included from ../../lib/common/FdGetLine.h:15, [ERROR ] from BackupStoreAccountDatabase.cpp:20: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupStoreAccountDatabase.cpp:20: [ERROR ] ../../lib/common/FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function `static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../release/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../release/lib/backupstore/backupstore.a [INFO ] gmake[2]: Leaving directory `lib/backupstore' [INFO ] gmake[2]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [AR] ../../release/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../release/lib/backupclient/backupclient.a [INFO ] gmake[2]: Leaving directory `lib/backupclient' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from BackupDaemon.cpp:74: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupDaemon.cpp:74: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../release/bin/bbackupd/bbackupd [INFO ] gmake[1]: Leaving directory `bin/bbackupd' [INFO ] mkdir -p parcels/boxbackup-trunk_2952-backup-client-solaris2.10 [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2952-backup-client-solaris2.10 [INFO ] (cd bin/bbackupquery; gmake RELEASE=1) [INFO ] gmake[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [ERROR ] In file included from ../../lib/common/FdGetLine.h:15, [ERROR ] from bbackupquery.cpp:55: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from bbackupquery.cpp:55: [ERROR ] ../../lib/common/FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/bin/bbackupquery/bbackupquery [INFO ] gmake[1]: Leaving directory `bin/bbackupquery' [INFO ] mkdir -p parcels/boxbackup-trunk_2952-backup-client-solaris2.10 [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2952-backup-client-solaris2.10 [INFO ] (cd bin/bbackupctl; gmake RELEASE=1) [INFO ] gmake[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from bbackupctl.cpp:26: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from bbackupctl.cpp:26: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/bin/bbackupctl/bbackupctl [INFO ] gmake[1]: Leaving directory `bin/bbackupctl' [INFO ] mkdir -p parcels/boxbackup-trunk_2952-backup-client-solaris2.10 [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2952-backup-client-solaris2.10 [INFO ] mkdir -p parcels/boxbackup-trunk_2952-backup-client-solaris2.10 [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2952-backup-client-solaris2.10 [INFO ] mkdir -p parcels/boxbackup-trunk_2952-backup-client-solaris2.10 [INFO ] cp -p COPYING.txt parcels/boxbackup-trunk_2952-backup-client-solaris2.10 [INFO ] mkdir -p parcels/boxbackup-trunk_2952-backup-client-solaris2.10 [INFO ] cp -p LICENSE-GPL.txt parcels/boxbackup-trunk_2952-backup-client-solaris2.10 [INFO ] mkdir -p parcels/boxbackup-trunk_2952-backup-client-solaris2.10 [INFO ] cp -p LICENSE-DUAL.txt parcels/boxbackup-trunk_2952-backup-client-solaris2.10 [INFO ] cd docs; gmake htmlguide/man-html/bbackupd.html [INFO ] gmake[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd.xml [ERROR ] gmake[1]: *** [htmlguide/man-html/bbackupd.html] Error 5 [INFO ] gmake[1]: Leaving directory `docs' [INFO ] *** Error code 2 [ERROR ] make: Fatal error: Command failed for target `docs/htmlguide/man-html/bbackupd.html' [INFO ] ==> Client build complete -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From subversion at boxbackup.org Mon May 2 12:21:34 2011 From: subversion at boxbackup.org (subversion at boxbackup.org) Date: Mon, 2 May 2011 12:21:34 +0100 (BST) Subject: [Box Backup-commit] COMMIT r2953 - box/trunk/docs/xsl-generic/html Message-ID: <20110502112134.355D818ECCC@www.boxbackup.org> Author: jamesog Date: 2011-05-02 12:21:33 +0100 (Mon, 02 May 2011) New Revision: 2953 Modified: box/trunk/docs/xsl-generic/html/biblio-iso690.xsl Log: Change encoding of biblio-iso690.xsl from windows-1250 to utf-8 to match the other stylesheets. This reflects the change made upstream at the DocBook project. This also fixes the man page build on Solaris, which has no support for windows-1250 in its libxml. Ref: http://sourceforge.net/project/shownotes.php?release_id=603854 Modified: box/trunk/docs/xsl-generic/html/biblio-iso690.xsl =================================================================== --- box/trunk/docs/xsl-generic/html/biblio-iso690.xsl 2011-05-01 21:14:59 UTC (rev 2952) +++ box/trunk/docs/xsl-generic/html/biblio-iso690.xsl 2011-05-02 11:21:33 UTC (rev 2953) @@ -1,4 +1,4 @@ - + From subversion at boxbackup.org Mon May 2 12:25:50 2011 From: subversion at boxbackup.org (subversion at boxbackup.org) Date: Mon, 2 May 2011 12:25:50 +0100 (BST) Subject: [Box Backup-commit] COMMIT r2954 - in box/trunk: . infrastructure Message-ID: <20110502112550.2D0CFE8977@www.boxbackup.org> Author: jamesog Date: 2011-05-02 12:25:49 +0100 (Mon, 02 May 2011) New Revision: 2954 Modified: box/trunk/configure.ac box/trunk/infrastructure/makebuildenv.pl.in Log: Finally unbreak build on Solaris! * Add code to configure to detect whether we should compile with -m32 or -m64. GCC on Solaris defaults to 32-bit even of the OS is running in 64-bit mode. (Solaris only) * Change the CFLAGS, CXXFLAGS and LDFLAGS definitions to be append rather than set. This allows passing them at compile-time to make(1). Modified: box/trunk/configure.ac =================================================================== --- box/trunk/configure.ac 2011-05-02 11:21:33 UTC (rev 2953) +++ box/trunk/configure.ac 2011-05-02 11:25:49 UTC (rev 2954) @@ -22,6 +22,16 @@ AC_MSG_ERROR([[basic compile checks failed, the C++ compiler is broken]]) fi +case $build_os in +solaris*) + isa_bits=`isainfo -b` + AC_MSG_NOTICE([setting compiler to use -m$isa_bits on Solaris]) + CFLAGS="$CFLAGS -m$isa_bits" + CXXFLAGS="$CXXFLAGS -m$isa_bits" + LDFLAGS="$LDFLAGS -m$isa_bits" + ;; +esac + if test "x$GXX" = "xyes"; then # Use -Wall if we have gcc. This gives better warnings AC_SUBST([CXXFLAGS_STRICT], ['-Wall -Wundef']) @@ -411,7 +421,7 @@ cat parcels.txt | sed -e 's/#.*//' | while read cmd subdir configure_args; do if test "$cmd" = "subdir"; then echo - export CC CXX CXXFLAGS LDFLAGS LIBS + export CC CXX CFLAGS CXXFLAGS LDFLAGS LIBS args="$configure_args --target=$target_alias" echo "Configuring $subdir with: $args" Modified: box/trunk/infrastructure/makebuildenv.pl.in =================================================================== --- box/trunk/infrastructure/makebuildenv.pl.in 2011-05-02 11:21:33 UTC (rev 2953) +++ box/trunk/infrastructure/makebuildenv.pl.in 2011-05-02 11:25:49 UTC (rev 2954) @@ -568,16 +568,16 @@ DEFAULT_CXXFLAGS = @CPPFLAGS@ $default_cxxflags @CXXFLAGS_STRICT@ \\ $include_paths $extra_platform_defines \\ -DBOX_VERSION="\\"$product_version\\"" -LDFLAGS = @LDFLAGS@ @LDADD_RDYNAMIC@ +LDFLAGS += @LDFLAGS@ @LDADD_RDYNAMIC@ .ifdef RELEASE -CXXFLAGS = -DBOX_RELEASE_BUILD $release_flags \$(DEFAULT_CXXFLAGS) +CXXFLAGS += -DBOX_RELEASE_BUILD $release_flags \$(DEFAULT_CXXFLAGS) OUTBASE = ../../release OUTDIR = ../../release/$mod DEPENDMAKEFLAGS = -D RELEASE VARIENT = RELEASE .else -CXXFLAGS = -g \$(DEFAULT_CXXFLAGS) +CXXFLAGS += -g \$(DEFAULT_CXXFLAGS) OUTBASE = ../../debug OUTDIR = ../../debug/$mod DEPENDMAKEFLAGS = From trac at boxbackup.org Mon May 2 12:29:37 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 11:29:37 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2953] Trunk Message-ID: <20110502112937.CCD2018BED7@www.boxbackup.org> Failed build of Box Backup [2953] --------------------------------------------------------------------- Changeset: 2953 - Committed by: jamesog Build Configuration: Trunk Build Platform: Solaris 10 x86 Build Slave: solaris-vbox Build Number: 1736 - Failures: Step: install-client Errors: Executing make failed (error code 1) Log: [INFO ] ==> Client install start [INFO ] (cd parcels/boxbackup-trunk_2953-backup-client-solaris2.10; ./install-backup-client) [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupquery was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupctl was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd-config was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd.html was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupquery.html was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupctl.html was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd-config.html was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd.conf.html was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd.8.gz was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupquery.8.gz was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupctl.8.gz was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd-config.8.gz was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd.conf.5.gz was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd-manifest.xml was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd-smf-method was not found anywhere! [INFO ] *** Error code 2 [ERROR ] make: Fatal error: Command failed for target `install-backup-client' [INFO ] ==> Client install complete -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 12:36:31 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 11:36:31 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2953] Trunk Message-ID: <20110502113631.70CBD18BB4A@www.boxbackup.org> Failed build of Box Backup [2953] --------------------------------------------------------------------- Changeset: 2953 - Committed by: jamesog Build Configuration: Trunk Build Platform: FreeBSD 8.0 amd64 Build Slave: www Build Number: 1733 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] [CXX] ExcludeList [INFO ] Configuration.cpp: In member function 'bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [INFO ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] [CXX] FdGetLine [INFO ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [INFO ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [INFO ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [INFO ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] IOStream [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] SocketStream [INFO ] [CXX] Socket [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 22953): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 22957): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 22978): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 22998): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [INFO ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] BackupCommands [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [INFO ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] bbstored [INFO ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8014030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 23215): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 23295): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23436): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x40 is unattached. [INFO ] WARNING: Object 0x40 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x40 is unattached. [INFO ] WARNING: Object 0x40 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x7 references object 0x30 which does not exist. [INFO ] WARNING: Directory ID 0x8 has bad structure [INFO ] WARNING: Directory ID 0x8 has wrong size for object 0x36 [INFO ] WARNING: Directory ID 0x1a has wrong container ID. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x37: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x7 references object 0x30 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x8 has bad structure [INFO ] WARNING: Directory ID 0x8 has wrong size for object 0x36 [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0x1a has wrong container ID. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x37: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/02/01/o02 found [INFO ] WARNING: Directory ID 0x12 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: Object 0x86 is unattached. [INFO ] WARNING: Object 0x87 is unattached. [INFO ] WARNING: Object 0x88 is unattached. [INFO ] WARNING: Object 0x89 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/02/01/o02 found, deleting [INFO ] WARNING: Directory ID 0x12 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x12 [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: Object 0x86 is unattached. [INFO ] WARNING: Object 0x87 is unattached. [INFO ] WARNING: Object 0x88 is unattached. [INFO ] WARNING: Object 0x89 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/03/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/03/01/o02 found [INFO ] WARNING: Directory ID 0x19 references object 0x7e which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Object 0x49 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/03/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/03/01/o02 found, deleting [INFO ] WARNING: Directory ID 0x19 references object 0x7e which does not exist. [INFO ] WARNING: Fixing directory ID 0x19 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Object 0x49 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 23430): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 23555): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 5 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] HTTPResponse [INFO ] [CXX] cencode [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPRequest [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23743): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23750): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no [INFO ] (cd bin/bbackupd; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] make[2]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../release/lib/win32/win32.a [INFO ] [RANLIB] ../../release/lib/win32/win32.a [INFO ] make[2]: Leaving directory `lib/win32' [INFO ] make[2]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [ERROR ] Timer.cpp: In static member function ?static void Timers::Cleanup()?: [ERROR ] Timer.cpp:86: warning: unused variable ?result? [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../release/lib/common/common.a [INFO ] [RANLIB] ../../release/lib/common/common.a [INFO ] make[2]: Leaving directory `lib/common' [INFO ] make[2]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../release/lib/compress/compress.a [INFO ] [RANLIB] ../../release/lib/compress/compress.a [INFO ] make[2]: Leaving directory `lib/compress' [INFO ] make[2]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../release/lib/crypto/crypto.a [INFO ] [RANLIB] ../../release/lib/crypto/crypto.a [INFO ] make[2]: Leaving directory `lib/crypto' [INFO ] make[2]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../release/lib/server/server.a [INFO ] [RANLIB] ../../release/lib/server/server.a [INFO ] make[2]: Leaving directory `lib/server' [INFO ] make[2]: Entering directory `qdbm' [ERROR ] make[2]: *** No targets specified and no makefile found. Stop. [INFO ] make[2]: Leaving directory `qdbm' [INFO ] make[2]: Entering directory `qdbm' [ERROR ] make[2]: *** No targets specified and no makefile found. Stop. [INFO ] make[2]: Leaving directory `qdbm' [ERROR ] make[1]: *** [dep_modules] Error 2 [INFO ] make[1]: Leaving directory `bin/bbackupd' [ERROR ] make: *** [release/bin/bbackupd/bbackupd] Error 2 Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 26468): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 26473): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 26484): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 26492): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 26551): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 26637): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 26717): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Object 0x48 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Object 0x48 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0xa references object 0x39 which does not exist. [INFO ] WARNING: Directory ID 0xb has bad structure [INFO ] WARNING: Directory ID 0xb has wrong size for object 0x3f [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Missing directory 0x1c could be recreated. [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x40: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0xa references object 0x39 which does not exist. [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0xb has bad structure [INFO ] WARNING: Directory ID 0xb has wrong size for object 0x3f [INFO ] WARNING: Fixing directory ID 0xb [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Recreating missing directory 0x1c [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x40: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o17 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o17 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o09 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o09 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 26710): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 26830): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPRequest [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Connection reset by peer (54) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 27020): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 27028): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] checking build system type... x86_64-unknown-linux-gnu [INFO ] checking host system type... x86_64-unknown-linux-gnu [INFO ] checking target system type... x86_64-unknown-linux-gnu [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /bin/grep [INFO ] checking for egrep... /bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... -ledit [INFO ] checking editline/readline.h usability... yes [INFO ] checking editline/readline.h presence... yes [INFO ] checking for editline/readline.h... yes [INFO ] checking whether editline supports history... yes [INFO ] checking for editline/readline.h... (cached) yes [INFO ] checking for db.h... 4.4.20 [INFO ] checking for library containing Berkeley DB 4.4.20... -ldb [INFO ] configure: using Berkeley DB version 4.4.20 [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... yes [INFO ] checking execinfo.h presence... yes [INFO ] checking for execinfo.h... yes [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... yes [INFO ] checking sys/xattr.h presence... yes [INFO ] checking for sys/xattr.h... yes [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... yes [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... no [INFO ] checking for struct stat.st_mtimespec... no [INFO ] checking for struct stat.st_atim.tv_nsec... yes [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... no [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... no [INFO ] checking whether INFTIM is declared... no [INFO ] checking whether SO_PEERCRED is declared... yes [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... no [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... no [INFO ] checking sys/endian.h presence... no [INFO ] checking for sys/endian.h... no [INFO ] checking asm/byteorder.h usability... yes [INFO ] checking asm/byteorder.h presence... yes [INFO ] checking for asm/byteorder.h... yes [INFO ] checking for __cpu_to_be64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... yes [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... yes [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... no [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... yes [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... yes [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... yes [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... no [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... no [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... no [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... yes [INFO ] checking for llistxattr... yes [INFO ] checking for getxattr... yes [INFO ] checking for lgetxattr... yes [INFO ] checking for setxattr... yes [INFO ] checking for lsetxattr... yes [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... no [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'Linux'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Generating Compress exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating HTTP exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: yes [INFO ] Readline: yes [INFO ] Extended attributes: yes -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 12:38:25 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 11:38:25 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2953] Trunk Message-ID: <20110502113826.06D2418D220@www.boxbackup.org> Failed build of Box Backup [2953] --------------------------------------------------------------------- Changeset: 2953 - Committed by: jamesog Build Configuration: Trunk Build Platform: Mac OS X 10.6 Build Slave: jmac Build Number: 1735 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] [RANLIB] win32 [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/win32/win32.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [INFO ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [INFO ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [INFO ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [INFO ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 3.997e-05 secs late [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 91067): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 91070): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 91076): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 91082): . done. [INFO ] PASSED [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [INFO ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 91400): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 91449): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] BackupQueries.cpp: In member function ?void BackupQueries::List(int64_t, const std::string&, const bool*, bool)?: [INFO ] BackupQueries.cpp:437: warning: format not a string literal and no format arguments [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 91646): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x510 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x6d [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x55 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x115e [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 6: main+0x173e [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x510 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x6d [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x55 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x115e [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 6: main+0x173e [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x641 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x33 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x358 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0xa52 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x26b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xa27 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 9: main+0x173e [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x74e [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x3b2 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x18c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x32c [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0xa52 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x26b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xa27 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 9: main+0x173e [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x641 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x33 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x358 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0xa52 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x26b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xa27 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 9: main+0x173e [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x74e [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x3b2 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x18c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x32c [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0xa52 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x26b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xa27 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x443 [INFO ] TRACE: Stack frame 9: main+0x173e [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 91641): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 91769): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 21 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 92009): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 92016): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] (cd bin/bbstored; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] (cd bin/bbstoreaccounts; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] make -C docs htmlguide/man-html/bbstored.html [INFO ] xsltproc -o htmlguide/man-html/bbstored.html docbook/bb-nochunk-book.xsl docbook/bbstored.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.html parcels/boxbackup-trunk_2525-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstoreaccounts.html [INFO ] xsltproc -o htmlguide/man-html/bbstoreaccounts.html docbook/bb-nochunk-book.xsl docbook/bbstoreaccounts.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstoreaccounts.html parcels/boxbackup-trunk_2525-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstored-certs.html [INFO ] xsltproc -o htmlguide/man-html/bbstored-certs.html docbook/bb-nochunk-book.xsl docbook/bbstored-certs.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-certs.html parcels/boxbackup-trunk_2525-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstored-config.html [INFO ] xsltproc -o htmlguide/man-html/bbstored-config.html docbook/bb-nochunk-book.xsl docbook/bbstored-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-config.html parcels/boxbackup-trunk_2525-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/raidfile-config.html [INFO ] xsltproc -o htmlguide/man-html/raidfile-config.html docbook/bb-nochunk-book.xsl docbook/raidfile-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile-config.html parcels/boxbackup-trunk_2525-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/bbstored.conf.html [INFO ] xsltproc -o htmlguide/man-html/bbstored.conf.html docbook/bb-nochunk-book.xsl docbook/bbstored.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.conf.html parcels/boxbackup-trunk_2525-backup-server-freebsd7.2/docs [INFO ] make -C docs htmlguide/man-html/raidfile.conf.html [INFO ] xsltproc -o htmlguide/man-html/raidfile.conf.html docbook/bb-nochunk-book.xsl docbook/raidfile.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile.conf.html parcels/boxbackup-trunk_2525-backup-server-freebsd7.2/docs [INFO ] make -C docs man/bbstored.8.gz [INFO ] xsltproc -o man/bbstored.8 docbook/bb-man.xsl docbook/bbstored.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [ERROR ] Note: meta date : no date; using generated date bbstored [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored [ERROR ] Note: Writing bbstored.8 [INFO ] gzip man/bbstored.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstoreaccounts.8.gz [INFO ] xsltproc -o man/bbstoreaccounts.8 docbook/bb-man.xsl docbook/bbstoreaccounts.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [ERROR ] Note: meta date : no date; using generated date bbstoreaccounts [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstoreaccounts [ERROR ] Note: Writing bbstoreaccounts.8 [INFO ] gzip man/bbstoreaccounts.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored-certs.8.gz [INFO ] xsltproc -o man/bbstored-certs.8 docbook/bb-man.xsl docbook/bbstored-certs.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [ERROR ] Note: meta date : no date; using generated date bbstored-certs [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored-certs [ERROR ] Note: Writing bbstored-certs.8 [INFO ] gzip man/bbstored-certs.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored-config.8.gz [INFO ] xsltproc -o man/bbstored-config.8 docbook/bb-man.xsl docbook/bbstored-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [ERROR ] Note: meta date : no date; using generated date bbstored-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored-config [ERROR ] Note: Writing bbstored-config.8 [INFO ] gzip man/bbstored-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] make -C docs man/raidfile-config.8.gz [INFO ] xsltproc -o man/raidfile-config.8 docbook/bb-man.xsl docbook/raidfile-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [ERROR ] Note: meta date : no date; using generated date raidfile-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date raidfile-config [ERROR ] Note: Writing raidfile-config.8 [INFO ] gzip man/raidfile-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored.conf.5.gz [INFO ] xsltproc -o man/bbstored.conf.5 docbook/bb-man.xsl docbook/bbstored.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [ERROR ] Note: meta date : no date; using generated date bbstored.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored.conf [ERROR ] Note: Writing bbstored.conf.5 [INFO ] gzip man/bbstored.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] make -C docs man/raidfile.conf.5.gz [INFO ] xsltproc -o man/raidfile.conf.5 docbook/bb-man.xsl docbook/raidfile.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [ERROR ] Note: meta date : no date; using generated date raidfile.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date raidfile.conf [ERROR ] Note: Writing raidfile.conf.5 [INFO ] gzip man/raidfile.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 || mkdir parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2525-backup-server-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2525-backup-server-freebsd7.2 | gzip -9 - > boxbackup-trunk_2525-backup-server-freebsd7.2.tgz ) [INFO ] (cd bin/bbackupd; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] make[2]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../release/lib/win32/win32.a [INFO ] [RANLIB] ../../release/lib/win32/win32.a [INFO ] make[2]: Leaving directory `lib/win32' [INFO ] make[2]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [ERROR ] Timer.cpp: In static member function ?static void Timers::Cleanup()?: [ERROR ] Timer.cpp:86: warning: unused variable ?result? [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../release/lib/common/common.a [INFO ] [RANLIB] ../../release/lib/common/common.a [INFO ] make[2]: Leaving directory `lib/common' [INFO ] make[2]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../release/lib/compress/compress.a [INFO ] [RANLIB] ../../release/lib/compress/compress.a [INFO ] make[2]: Leaving directory `lib/compress' [INFO ] make[2]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../release/lib/crypto/crypto.a [INFO ] [RANLIB] ../../release/lib/crypto/crypto.a [INFO ] make[2]: Leaving directory `lib/crypto' [INFO ] make[2]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../release/lib/server/server.a [INFO ] [RANLIB] ../../release/lib/server/server.a [INFO ] make[2]: Leaving directory `lib/server' [INFO ] make[2]: Entering directory `qdbm' [ERROR ] make[2]: *** No targets specified and no makefile found. Stop. [INFO ] make[2]: Leaving directory `qdbm' [INFO ] make[2]: Entering directory `qdbm' [ERROR ] make[2]: *** No targets specified and no makefile found. Stop. [INFO ] make[2]: Leaving directory `qdbm' [ERROR ] make[1]: *** [dep_modules] Error 2 [INFO ] make[1]: Leaving directory `bin/bbackupd' [ERROR ] make: *** [release/bin/bbackupd/bbackupd] Error 2 Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../release/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 94797): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 94800): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 94806): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 94812): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 94884): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 94933): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 95025): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o17 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o17 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 95020): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 95151): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 21 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 95386): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 95395): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [ERROR ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [ERROR ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [ERROR ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [ERROR ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(116) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(133) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (!spTimers) at Timer.cpp(43) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(90) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19873): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19877): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 19884): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 19892): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [ERROR ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:436: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)': [ERROR ] testbackupstore.cpp:488: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8013030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 20125): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 20185): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:411: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 20437): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 4 seconds [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/lib/intercept/intercept.a' is up to date. [INFO ] `../../debug/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../debug/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] `../../debug/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] WARNING: Exception thrown: ConnectionException(Conn_SocketWriteError) at SocketStream.cpp(312) [INFO ] done. [INFO ] Waiting for server to die (pid 20690): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20709): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 15285): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 15288): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 15294): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 15301): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:412: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../release/test/bbackupd/test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 15758): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 15765): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 12:42:39 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 11:42:39 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2954] Trunk Message-ID: <20110502114239.5AD4918AFAA@www.boxbackup.org> Failed build of Box Backup [2954] --------------------------------------------------------------------- Changeset: 2954 - Committed by: jamesog Build Configuration: Trunk Build Platform: Solaris 10 x86 Build Slave: solaris-vbox Build Number: 1743 - Failures: Step: install-client Errors: Executing make failed (error code 1) Log: [INFO ] ==> Client install start [INFO ] (cd parcels/boxbackup-trunk_2954-backup-client-solaris2.10; ./install-backup-client) [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupquery was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupctl was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd-config was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd.html was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupquery.html was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupctl.html was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd-config.html was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd.conf.html was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd.8.gz was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupquery.8.gz was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupctl.8.gz was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd-config.8.gz was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd.conf.5.gz was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd-manifest.xml was not found anywhere! [ERROR ] find: cannot read dir /etc/inet/secret: Permission denied [ERROR ] find: cannot read dir /etc/sfw/openssl/private: Permission denied [ERROR ] find: cannot read dir /etc/sfw/private: Permission denied [ERROR ] find: cannot read dir /etc/webmin: Permission denied [ERROR ] find: cannot read dir /etc/flash/precreation: Permission denied [ERROR ] find: cannot read dir /etc/apache/ssl.key: Permission denied [ERROR ] find: cycle detected for /lib/32/ [ERROR ] find: cycle detected for /lib/secure/32/ [ERROR ] find: cycle detected for /usr/lib/lwp/32/ [ERROR ] find: cycle detected for /usr/lib/libp/32/ [ERROR ] find: cannot read dir /usr/lib/cc-cfw: Permission denied [ERROR ] find: cycle detected for /usr/lib/secure/32/ [ERROR ] find: cannot read dir /usr/lib/scn/bin: Permission denied [ERROR ] find: cannot read dir /usr/lib/scn/lib: Permission denied [ERROR ] find: cycle detected for /usr/lib/32/ [ERROR ] find: cycle detected for /usr/lib/link_audit/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/de_LU.UTF-8/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-15/LC_MESSAGES: No such file or directory [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_BE.ISO8859-1/LC_MESSAGES: No such file or directory [ERROR ] find: cycle detected for /usr/lib/locale/common/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LC_CTYPE/32/ [ERROR ] find: cycle detected for /usr/lib/locale/common/LO_LTYPE/32/ [ERROR ] find: cannot follow symbolic link /usr/lib/locale/fr_FR.ISO8859-15/LC_MESSAGES: No such file or directory [INFO ] install: bbackupd-smf-method was not found anywhere! [INFO ] *** Error code 2 [ERROR ] make: Fatal error: Command failed for target `install-backup-client' [INFO ] ==> Client install complete -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 12:44:19 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 11:44:19 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2953] Trunk Message-ID: <20110502114420.0493918AA76@www.boxbackup.org> Failed build of Box Backup [2953] --------------------------------------------------------------------- Changeset: 2953 - Committed by: jamesog Build Configuration: Trunk Build Platform: CentOS 5 x86_64 Build Slave: centos-vbox Build Number: 1731 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13204): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13207): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 13213): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 13219): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] BackupStoreDaemon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x7bc57f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 19WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] 0 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 13457): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 13503): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13661): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 13656): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 13782): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 5 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPResponse.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPServer.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13988): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13995): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] U . [INFO ] Checked out revision 2608. [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(90) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11003): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11007): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 11020): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 11033): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:436: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)': [ERROR ] testbackupstore.cpp:488: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 11106): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 11180): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: ...............ERROR: **** TEST FAILURE: Server didn't save PID file at Test.cpp:291 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] timed out! [INFO ] FAILED: 2 tests failed (first at Test.cpp:291) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:411: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 11365): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 1 seconds [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/lib/intercept/intercept.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:187 [INFO ] done. [INFO ] Waiting for server to die (pid 11642): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11651): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:291) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 16772): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 16775): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 16781): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 16787): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 16855): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 16902): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 16988): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x231 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x231 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o16 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o16 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/o07 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/o07 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 16983): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 17114): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPResponse.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPServer.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17320): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17327): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 12:46:15 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 11:46:15 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2953] Trunk Message-ID: <20110502114615.8FC3718AF6E@www.boxbackup.org> Failed build of Box Backup [2953] --------------------------------------------------------------------- Changeset: 2953 - Committed by: jamesog Build Configuration: Trunk Build Platform: Debian 4.0 amd64 Build Slave: wildfire Build Number: 1732 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 15714): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 15717): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 15723): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 15733): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [INFO ] [CXX] bbstored.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x1e77870 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 15971): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 16017): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 16178): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x39 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x39 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 16173): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 16299): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 12 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 16534): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 16541): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] (cd bin/bbackupd; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] make[2]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../release/lib/win32/win32.a [INFO ] [RANLIB] ../../release/lib/win32/win32.a [INFO ] make[2]: Leaving directory `lib/win32' [INFO ] make[2]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [ERROR ] Timer.cpp: In static member function ?static void Timers::Cleanup()?: [ERROR ] Timer.cpp:86: warning: unused variable ?result? [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../release/lib/common/common.a [INFO ] [RANLIB] ../../release/lib/common/common.a [INFO ] make[2]: Leaving directory `lib/common' [INFO ] make[2]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../release/lib/compress/compress.a [INFO ] [RANLIB] ../../release/lib/compress/compress.a [INFO ] make[2]: Leaving directory `lib/compress' [INFO ] make[2]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../release/lib/crypto/crypto.a [INFO ] [RANLIB] ../../release/lib/crypto/crypto.a [INFO ] make[2]: Leaving directory `lib/crypto' [INFO ] make[2]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../release/lib/server/server.a [INFO ] [RANLIB] ../../release/lib/server/server.a [INFO ] make[2]: Leaving directory `lib/server' [INFO ] make[2]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../release/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../release/lib/backupclient/backupclient.a [INFO ] make[2]: Leaving directory `lib/backupclient' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../release/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] (cd bin/bbackupquery; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../release/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] (cd bin/bbackupctl; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../release/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] cp -p COPYING.txt parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] cp -p LICENSE-GPL.txt parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] cp -p LICENSE-DUAL.txt parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] make -C docs htmlguide/man-html/bbackupd.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.html parcels/boxbackup-trunk_2609-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupquery.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupquery.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupquery.html parcels/boxbackup-trunk_2609-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupctl.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupctl.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupctl.html parcels/boxbackup-trunk_2609-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupd-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd-config.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd-config.html parcels/boxbackup-trunk_2609-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupd.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd.conf.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.conf.html parcels/boxbackup-trunk_2609-backup-client-linux-gnu/docs [INFO ] make -C docs man/bbackupd.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbackupd.xml [INFO ] [GZIP] man/bbackupd.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.8.gz parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] make -C docs man/bbackupquery.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbackupquery.xml [INFO ] [GZIP] man/bbackupquery.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupquery.8.gz parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] make -C docs man/bbackupctl.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbackupctl.xml [INFO ] [GZIP] man/bbackupctl.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupctl.8.gz parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbackupd-config.xml [INFO ] [GZIP] man/bbackupd-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd-config.8.gz parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbackupd.conf.xml [INFO ] [GZIP] man/bbackupd.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.conf.5.gz parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2609-backup-client-linux-gnu || mkdir parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] cp parcels/scripts/install-backup-client parcels/boxbackup-trunk_2609-backup-client-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2609-backup-client-linux-gnu | gzip -9 - > boxbackup-trunk_2609-backup-client-linux-gnu.tgz ) [INFO ] (cd bin/bbstored; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] make[2]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../release/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../release/lib/raidfile/raidfile.a [INFO ] make[2]: Leaving directory `lib/raidfile' [INFO ] make[2]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../release/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../release/lib/backupstore/backupstore.a [INFO ] make[2]: Leaving directory `lib/backupstore' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:263: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:471: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:586: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../release/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] (cd bin/bbstoreaccounts; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../release/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp -p COPYING.txt parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp -p LICENSE-GPL.txt parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp -p LICENSE-DUAL.txt parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] make -C docs htmlguide/man-html/bbstored.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.html parcels/boxbackup-trunk_2609-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstoreaccounts.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstoreaccounts.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstoreaccounts.html parcels/boxbackup-trunk_2609-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored-certs.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored-certs.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-certs.html parcels/boxbackup-trunk_2609-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored-config.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-config.html parcels/boxbackup-trunk_2609-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/raidfile-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/raidfile-config.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile-config.html parcels/boxbackup-trunk_2609-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored.conf.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.conf.html parcels/boxbackup-trunk_2609-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/raidfile.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/raidfile.conf.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile.conf.html parcels/boxbackup-trunk_2609-backup-server-linux-gnu/docs [INFO ] make -C docs man/bbstored.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored.xml [INFO ] [GZIP] man/bbstored.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] make -C docs man/bbstoreaccounts.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstoreaccounts.xml [INFO ] [GZIP] man/bbstoreaccounts.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-certs.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored-certs.xml [INFO ] [GZIP] man/bbstored-certs.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored-config.xml [INFO ] [GZIP] man/bbstored-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] make -C docs man/raidfile-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/raidfile-config.xml [INFO ] [GZIP] man/raidfile-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] make -C docs man/bbstored.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored.conf.xml [INFO ] [GZIP] man/bbstored.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] make -C docs man/raidfile.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/raidfile.conf.xml [INFO ] [GZIP] man/raidfile.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2609-backup-server-linux-gnu || mkdir parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2609-backup-server-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2609-backup-server-linux-gnu | gzip -9 - > boxbackup-trunk_2609-backup-server-linux-gnu.tgz ) Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19359): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19362): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 19368): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 19375): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 19448): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 19497): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19603): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x51 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x51 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o09 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o09 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 19598): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 19724): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19945): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19955): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [ERROR ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [ERROR ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [ERROR ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [ERROR ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 68697): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 68702): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 68719): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 68729): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [ERROR ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [ERROR ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [ERROR ] HousekeepStoreAccount.cpp:263: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [ERROR ] HousekeepStoreAccount.cpp:471: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:586: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8013030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `libqdbm.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:412: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `libqdbm.a' is up to date. [INFO ] `../../debug/lib/intercept/intercept.a' is up to date. [INFO ] `../../debug/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../debug/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] `../../debug/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:187 [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 69397): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 69406): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 69643): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 69648): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 69659): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 69695): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `libqdbm.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:412: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 1 seconds [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `libqdbm.a' is up to date. [INFO ] `../../release/lib/intercept/intercept.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:187 [INFO ] done. [INFO ] Waiting for server to die (pid 70180): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 70194): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 12:51:06 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 11:51:06 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2954] Trunk Message-ID: <20110502115106.D43B918B2B0@www.boxbackup.org> Failed build of Box Backup [2954] --------------------------------------------------------------------- Changeset: 2954 - Committed by: jamesog Build Configuration: Trunk Build Platform: FreeBSD 8.0 amd64 Build Slave: www Build Number: 1740 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] Configuration.cpp: In member function 'bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [INFO ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] [CXX] ExcludeList [INFO ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [INFO ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [INFO ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [INFO ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] ZeroStream [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 37598): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 37601): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 37607): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 37616): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [INFO ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] BackupCommands [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [INFO ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] bbstored [INFO ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8014030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 37843): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 37911): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 38068): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x76 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x76 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x13 references object 0x6b which does not exist. [INFO ] WARNING: Directory ID 0x14 has bad structure [INFO ] WARNING: Directory ID 0x14 has wrong size for object 0x6e [INFO ] WARNING: Directory ID 0x18 has wrong container ID. [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Missing directory 0xe could be recreated. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6f: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x13 references object 0x6b which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x14 has bad structure [INFO ] WARNING: Directory ID 0x14 has wrong size for object 0x6e [INFO ] WARNING: Fixing directory ID 0x14 [INFO ] WARNING: Directory ID 0x18 has wrong container ID. [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Recreating missing directory 0xe [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6f: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/02/01/o00 found [INFO ] WARNING: Directory ID 0x5 references object 0x28 which is already contained. [INFO ] WARNING: Object 0x82 is unattached. [INFO ] WARNING: Missing directory 0x18 could be recreated. [INFO ] WARNING: Object 0x83 is unattached. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: Object 0x86 is unattached. [INFO ] WARNING: Object 0x87 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/02/01/o00 found, deleting [INFO ] WARNING: Directory ID 0x5 references object 0x28 which is already contained. [INFO ] WARNING: Fixing directory ID 0x5 [INFO ] WARNING: Object 0x82 is unattached. [INFO ] WARNING: Recreating missing directory 0x18 [INFO ] WARNING: Object 0x83 is unattached. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: Object 0x86 is unattached. [INFO ] WARNING: Object 0x87 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x1c is unattached. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x1c is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o02 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/03/01/o02 found [INFO ] WARNING: Directory ID 0x17 references object 0x7e which does not exist. [INFO ] WARNING: Directory ID 0x1c has wrong container ID. [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Object 0x65 is unattached. [INFO ] WARNING: Missing directory 0x12 could be recreated. [INFO ] WARNING: Object 0x66 is unattached. [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o02 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/03/01/o02 found, deleting [INFO ] WARNING: Directory ID 0x17 references object 0x7e which does not exist. [INFO ] WARNING: Fixing directory ID 0x17 [INFO ] WARNING: Directory ID 0x1c has wrong container ID. [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Object 0x65 is unattached. [INFO ] WARNING: Recreating missing directory 0x12 [INFO ] WARNING: Object 0x66 is unattached. [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 38063): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 38208): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPRequest [INFO ] [CXX] S3Simulator [INFO ] [CXX] S3Client [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Connection reset by peer (54) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 38394): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 38402): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] U . [INFO ] Checked out revision 2643. Step: tests-release Errors: Executing perl failed (error code 1) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 41120): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 41123): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 41130): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 41149): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 41207): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 41276): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 41348): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Object 0x8d is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Object 0x8d is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x6 has wrong container ID. [INFO ] WARNING: Directory ID 0x1a references object 0x7e which does not exist. [INFO ] WARNING: Directory ID 0x1b has bad structure [INFO ] WARNING: Directory ID 0x1b has wrong size for object 0x84 [INFO ] WARNING: Object 0x62 is unattached. [INFO ] WARNING: Missing directory 0xf could be recreated. [INFO ] WARNING: Object 0x63 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x85: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x6 has wrong container ID. [INFO ] WARNING: Directory ID 0x1a references object 0x7e which does not exist. [INFO ] WARNING: Fixing directory ID 0x1a [INFO ] WARNING: Directory ID 0x1b has bad structure [INFO ] WARNING: Directory ID 0x1b has wrong size for object 0x84 [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x62 is unattached. [INFO ] WARNING: Recreating missing directory 0xf [INFO ] WARNING: Object 0x63 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x85: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o06 found [INFO ] WARNING: Directory ID 0x9 references object 0x3c which is already contained. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: Missing directory 0x6 could be recreated. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o06 found, deleting [INFO ] WARNING: Directory ID 0x9 references object 0x3c which is already contained. [INFO ] WARNING: Fixing directory ID 0x9 [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: Recreating missing directory 0x6 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x15 is unattached. [INFO ] WARNING: Object 0x6d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x15 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x6d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o19 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o2f found [INFO ] WARNING: Directory ID 0x4 references object 0x2f which does not exist. [INFO ] WARNING: Directory ID 0x15 has wrong container ID. [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Missing directory 0x19 could be recreated. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o19 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o2f found, deleting [INFO ] WARNING: Directory ID 0x4 references object 0x2f which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x15 has wrong container ID. [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Recreating missing directory 0x19 [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 41342): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 41457): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPRequest [INFO ] [CXX] S3Simulator [INFO ] [CXX] S3Client [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:187 [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 41636): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 41644): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] (cd bin/bbstored; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] make[2]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../release/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../release/lib/raidfile/raidfile.a [INFO ] make[2]: Leaving directory `lib/raidfile' [INFO ] make[2]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../release/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../release/lib/backupstore/backupstore.a [INFO ] make[2]: Leaving directory `lib/backupstore' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:263: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:471: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:586: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../release/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] (cd bin/bbstoreaccounts; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../release/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp -p COPYING.txt parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp -p LICENSE-GPL.txt parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp -p LICENSE-DUAL.txt parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] make -C docs htmlguide/man-html/bbstored.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.html parcels/boxbackup-trunk_2644-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstoreaccounts.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstoreaccounts.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstoreaccounts.html parcels/boxbackup-trunk_2644-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored-certs.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored-certs.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-certs.html parcels/boxbackup-trunk_2644-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored-config.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-config.html parcels/boxbackup-trunk_2644-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/raidfile-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/raidfile-config.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile-config.html parcels/boxbackup-trunk_2644-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored.conf.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.conf.html parcels/boxbackup-trunk_2644-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/raidfile.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/raidfile.conf.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile.conf.html parcels/boxbackup-trunk_2644-backup-server-linux-gnu/docs [INFO ] make -C docs man/bbstored.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored.xml [INFO ] [GZIP] man/bbstored.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] make -C docs man/bbstoreaccounts.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstoreaccounts.xml [INFO ] [GZIP] man/bbstoreaccounts.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-certs.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored-certs.xml [INFO ] [GZIP] man/bbstored-certs.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored-config.xml [INFO ] [GZIP] man/bbstored-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] make -C docs man/raidfile-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/raidfile-config.xml [INFO ] [GZIP] man/raidfile-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] make -C docs man/bbstored.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored.conf.xml [INFO ] [GZIP] man/bbstored.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] make -C docs man/raidfile.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/raidfile.conf.xml [INFO ] [GZIP] man/raidfile.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2644-backup-server-linux-gnu || mkdir parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2644-backup-server-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2644-backup-server-linux-gnu | gzip -9 - > boxbackup-trunk_2644-backup-server-linux-gnu.tgz ) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(90) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 88957): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 88966): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 88974): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 88985): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:436: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)': [ERROR ] testbackupstore.cpp:488: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 89049): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 89112): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:411: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 89299): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 1 seconds [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/lib/intercept/intercept.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Connection reset by peer (54) [INFO ] WARNING: Exception thrown: ConnectionException(Conn_SocketWriteError) at SocketStream.cpp(312) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 89594): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 89603): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 12:55:06 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 11:55:06 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2954] Trunk Message-ID: <20110502115506.76E5718B2DA@www.boxbackup.org> Failed build of Box Backup [2954] --------------------------------------------------------------------- Changeset: 2954 - Committed by: jamesog Build Configuration: Trunk Build Platform: Mac OS X 10.6 Build Slave: jmac Build Number: 1742 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] [RANLIB] win32 [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/win32/win32.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [INFO ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] DebugPrintf [INFO ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [INFO ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [INFO ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [INFO ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 3.91e-07 secs late [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] /usr/bin/ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [RANLIB] server [INFO ] ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 5373): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 5376): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 5382): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 5390): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [INFO ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 5711): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 5755): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] BackupQueries.cpp: In member function ?void BackupQueries::List(int64_t, const std::string&, const bool*, bool)?: [INFO ] BackupQueries.cpp:437: warning: format not a string literal and no format arguments [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 5948): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 5943): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 6074): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 17 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] cdecode [INFO ] [CXX] HTTPServer [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 6316): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 6323): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(90) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 78913): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 78917): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 78928): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 78936): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:436: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)': [ERROR ] testbackupstore.cpp:488: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 79008): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 79145): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:411: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 79301): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/lib/intercept/intercept.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:187 [INFO ] done. [INFO ] Waiting for server to die (pid 79623): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 79633): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../release/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 9112): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 9115): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 9121): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 9128): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 9200): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 9244): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 9337): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o17 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o17 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 9332): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 9463): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 16 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 9711): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 9718): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] U . [INFO ] Checked out revision 2601. -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 13:05:25 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 12:05:25 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2954] Trunk Message-ID: <20110502120525.8D58718B2FE@www.boxbackup.org> Failed build of Box Backup [2954] --------------------------------------------------------------------- Changeset: 2954 - Committed by: jamesog Build Configuration: Trunk Build Platform: CentOS 5 x86_64 Build Slave: centos-vbox Build Number: 1738 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 27234): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 27237): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 27243): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 27249): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] BackupStoreDaemon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x15bfc7f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 27487): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 27533): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 27691): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 27686): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 27815): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 4 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPResponse.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPServer.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 28021): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 28028): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-linux-gnu [INFO ] checking host system type... x86_64-unknown-linux-gnu [INFO ] checking target system type... x86_64-unknown-linux-gnu [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /bin/grep [INFO ] checking for egrep... /bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... -ledit [INFO ] checking editline/readline.h usability... yes [INFO ] checking editline/readline.h presence... yes [INFO ] checking for editline/readline.h... yes [INFO ] checking whether editline supports history... yes [INFO ] checking for editline/readline.h... (cached) yes [INFO ] checking for db.h... 4.4.20 [INFO ] checking for library containing Berkeley DB 4.4.20... -ldb [INFO ] configure: using Berkeley DB version 4.4.20 [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... yes [INFO ] checking execinfo.h presence... yes [INFO ] checking for execinfo.h... yes [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... yes [INFO ] checking sys/xattr.h presence... yes [INFO ] checking for sys/xattr.h... yes [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... yes [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... no [INFO ] checking for struct stat.st_mtimespec... no [INFO ] checking for struct stat.st_atim.tv_nsec... yes [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... no [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... no [INFO ] checking whether INFTIM is declared... no [INFO ] checking whether SO_PEERCRED is declared... yes [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... no [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... no [INFO ] checking sys/endian.h presence... no [INFO ] checking for sys/endian.h... no [INFO ] checking asm/byteorder.h usability... yes [INFO ] checking asm/byteorder.h presence... yes [INFO ] checking for asm/byteorder.h... yes [INFO ] checking for __cpu_to_be64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... yes [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... yes [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... no [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... yes [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... yes [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... yes [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... no [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... no [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... no [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... yes [INFO ] checking for llistxattr... yes [INFO ] checking for getxattr... yes [INFO ] checking for lgetxattr... yes [INFO ] checking for setxattr... yes [INFO ] checking for lsetxattr... yes [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... no [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'Linux'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Generating Compress exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating HTTP exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: yes [INFO ] Readline: yes [INFO ] Extended attributes: yes Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 30807): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 30810): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 30818): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 30824): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 30892): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 30951): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 31037): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x231 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x231 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 282 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 282 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o16 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o16 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/o07 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/o07 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 31032): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 31159): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPResponse.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPServer.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 31366): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 31373): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11998): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 12001): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 12010): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 12019): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:412: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../release/test/bbackupd/test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 12466): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 12473): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] U . [INFO ] Checked out revision 2599. -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 13:09:35 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 12:09:35 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2954] Trunk Message-ID: <20110502120935.328CF18B313@www.boxbackup.org> Failed build of Box Backup [2954] --------------------------------------------------------------------- Changeset: 2954 - Committed by: jamesog Build Configuration: Trunk Build Platform: Debian 4.0 amd64 Build Slave: wildfire Build Number: 1739 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 28947): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 28950): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 28958): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 28987): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [INFO ] [CXX] bbstored.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x1ddb870 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 29228): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 29274): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 29436): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x39 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x39 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 29431): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 29555): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 12 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 29765): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 29772): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11071): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11075): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 11081): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 11087): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:263: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:471: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:586: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x13b66f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:412: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 12 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../debug/test/bbackupd/test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11766): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11773): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(90) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 8953): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 8957): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 8982): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 8990): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:436: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)': [ERROR ] testbackupstore.cpp:488: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 9065): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 9165): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:411: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 9341): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/lib/intercept/intercept.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:187 [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 9631): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 9640): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 32559): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 32562): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 32568): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 32575): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 32648): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 32727): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 348): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x51 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x51 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o09 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o09 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 343): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 470): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 688): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 696): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] (cd bin/bbstored; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] (cd bin/bbstoreaccounts; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbstored.8 docbook/bb-man.xsl docbook/bbstored.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [ERROR ] Note: Writing bbstored.8 [INFO ] gzip man/bbstored.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstoreaccounts.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbstoreaccounts.8 docbook/bb-man.xsl docbook/bbstoreaccounts.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [ERROR ] Note: Writing bbstoreaccounts.8 [INFO ] gzip man/bbstoreaccounts.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored-certs.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbstored-certs.8 docbook/bb-man.xsl docbook/bbstored-certs.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [ERROR ] Note: Writing bbstored-certs.8 [INFO ] gzip man/bbstored-certs.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored-config.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbstored-config.8 docbook/bb-man.xsl docbook/bbstored-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [ERROR ] Note: Writing bbstored-config.8 [INFO ] gzip man/bbstored-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] make -C docs man/raidfile-config.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/raidfile-config.8 docbook/bb-man.xsl docbook/raidfile-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [ERROR ] Note: Writing raidfile-config.8 [INFO ] gzip man/raidfile-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored.conf.5.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbstored.conf.5 docbook/bb-man.xsl docbook/bbstored.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [ERROR ] Note: Writing bbstored.conf.5 [INFO ] gzip man/bbstored.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] make -C docs man/raidfile.conf.5.gz [INFO ] make xslt [INFO ] xsltproc -o man/raidfile.conf.5 docbook/bb-man.xsl docbook/raidfile.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [ERROR ] Note: Writing raidfile.conf.5 [INFO ] gzip man/raidfile.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 || mkdir parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2512-backup-server-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2512-backup-server-freebsd7.2 | gzip -9 - > boxbackup-trunk_2512-backup-server-freebsd7.2.tgz ) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [ERROR ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [ERROR ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [ERROR ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [ERROR ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(116) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(133) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (!spTimers) at Timer.cpp(43) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(90) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17835): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17844): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 17852): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 17860): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [ERROR ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:436: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)': [ERROR ] testbackupstore.cpp:488: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8013030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 18091): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 18193): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:411: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 18434): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/lib/intercept/intercept.a' is up to date. [INFO ] `../../debug/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../debug/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] `../../debug/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Connection reset by peer (54) [INFO ] WARNING: Exception thrown: ConnectionException(Conn_SocketWriteError) at SocketStream.cpp(312) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 18694): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 18708): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From subversion at boxbackup.org Mon May 2 14:17:45 2011 From: subversion at boxbackup.org (subversion at boxbackup.org) Date: Mon, 2 May 2011 14:17:45 +0100 (BST) Subject: [Box Backup-commit] COMMIT r2955 - box/trunk/infrastructure Message-ID: <20110502131745.5144C18B43C@www.boxbackup.org> Author: jamesog Date: 2011-05-02 14:17:45 +0100 (Mon, 02 May 2011) New Revision: 2955 Modified: box/trunk/infrastructure/makeparcels.pl.in Log: Use /usr/ucb/install on Solaris as /usr/sbin/install has some odd behaviour. Modified: box/trunk/infrastructure/makeparcels.pl.in =================================================================== --- box/trunk/infrastructure/makeparcels.pl.in 2011-05-02 11:25:49 UTC (rev 2954) +++ box/trunk/infrastructure/makeparcels.pl.in 2011-05-02 13:17:45 UTC (rev 2955) @@ -137,6 +137,9 @@ my $dir = BoxPlatform::parcel_dir($parcel); my @parcel_deps; + # Need to use BSD install on Solaris + my $install_bin = $build_os eq 'SunOS' ? '/usr/ucb/install' : 'install'; + unless ($target_windows) { open SCRIPT,">parcels/scripts/install-$parcel" or die @@ -327,7 +330,7 @@ } print SCRIPT "mkdir -p " . "\${DESTDIR}$local_install_dir/\n"; - print SCRIPT "install $name " . + print SCRIPT "$install_bin $name " . "\${DESTDIR}$local_install_dir\n"; } } From trac at boxbackup.org Mon May 2 14:36:07 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 13:36:07 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2955] Trunk Message-ID: <20110502133607.800BD18D2BA@www.boxbackup.org> Failed build of Box Backup [2955] --------------------------------------------------------------------- Changeset: 2955 - Committed by: jamesog Build Configuration: Trunk Build Platform: FreeBSD 8.0 amd64 Build Slave: www Build Number: 1747 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] Configuration.cpp: In member function 'bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [INFO ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [INFO ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [INFO ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [INFO ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] MD5Digest [INFO ] [CXX] CipherDescription [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 54253): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 54256): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 54264): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 54276): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [INFO ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [INFO ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] bbstored [INFO ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8014030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 54492): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 54568): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 54714): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x54 is unattached. [INFO ] WARNING: Object 0x54 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x54 is unattached. [INFO ] WARNING: Object 0x54 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0xa references object 0x4e which does not exist. [INFO ] WARNING: Directory ID 0xc has bad structure [INFO ] WARNING: Directory ID 0xc has wrong size for object 0x59 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x5a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0xa references object 0x4e which does not exist. [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0xc has bad structure [INFO ] WARNING: Directory ID 0xc has wrong size for object 0x59 [INFO ] WARNING: Fixing directory ID 0xc [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x5a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/00/01/o03 found [INFO ] WARNING: Directory ID 0x5 references object 0x28 which is already contained. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Missing directory 0x13 could be recreated. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/00/01/o03 found, deleting [INFO ] WARNING: Directory ID 0x5 references object 0x28 which is already contained. [INFO ] WARNING: Fixing directory ID 0x5 [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Recreating missing directory 0x13 [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x16 is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x16 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/03/o03 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/02/02/01/o03 found [INFO ] WARNING: Directory ID 0x11 references object 0x6b which does not exist. [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: File ID 0x7c has different container ID, probably moved [INFO ] WARNING: Object 0x65 is unattached. [INFO ] WARNING: Missing directory 0xf could be recreated. [INFO ] WARNING: Object 0x66 is unattached. [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/03/o03 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/02/02/01/o03 found, deleting [INFO ] WARNING: Directory ID 0x11 references object 0x6b which does not exist. [INFO ] WARNING: Fixing directory ID 0x11 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: File ID 0x7c has different container ID, probably moved [INFO ] WARNING: Object 0x65 is unattached. [INFO ] WARNING: Recreating missing directory 0xf [INFO ] WARNING: Object 0x66 is unattached. [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x7c has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x7c has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 54708): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 54827): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPRequest [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Connection reset by peer (54) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 55006): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 55014): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... i686-apple-darwin10.2.0 [INFO ] checking host system type... i686-apple-darwin10.2.0 [INFO ] checking target system type... i686-apple-darwin10.2.0 [INFO ] checking for gcc... gcc [INFO ] checking for C compiler default output file name... a.out [INFO ] checking whether the C compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C compiler... yes [INFO ] checking whether gcc accepts -g... yes [INFO ] checking for gcc option to accept ISO C89... none needed [INFO ] checking for g++... g++ [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... -ledit [INFO ] checking editline/readline.h usability... yes [INFO ] checking editline/readline.h presence... yes [INFO ] checking for editline/readline.h... yes [INFO ] checking for rl_completion_matches in readline headers... no [INFO ] checking for completion_matches in readline headers... no [INFO ] checking whether editline supports history... yes [INFO ] checking for editline/readline.h... (cached) yes [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... yes [INFO ] checking execinfo.h presence... yes [INFO ] checking for execinfo.h... yes [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... yes [INFO ] checking sys/xattr.h presence... yes [INFO ] checking for sys/xattr.h... yes [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... yes [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... no [INFO ] checking whether INFTIM is declared... no [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... no [INFO ] checking sys/endian.h presence... no [INFO ] checking for sys/endian.h... no [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... no [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... yes [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... yes [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... yes [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... yes [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [ERROR ] 2 processors detected, will set make to perform concurrent jobs [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] Building on 'Darwin'. [INFO ] Seeding autogen code... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] Making Server protocol classes from backupprotocol.txt... [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Generating Cipher exception... [INFO ] Generating HTTP exception... [INFO ] Generating RaidFile exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Making Server protocol classes from testprotocol.txt... [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] Making Client protocol classes from testprotocol.txt... [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; bsdmake' to build a module [INFO ] Configuring qdbm with: libqdbm.a --target= [ERROR ] configure: WARNING: you should use --build, --host, --target [INFO ] #================================================================ [INFO ] # Configuring QDBM version 1.8.77. [INFO ] #================================================================ [INFO ] checking for libqdbm.a-gcc... gcc [INFO ] checking for C compiler default output file name... a.out [INFO ] checking whether the C compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C compiler... yes [INFO ] checking whether gcc accepts -g... yes [INFO ] checking for gcc option to accept ANSI C... none needed [INFO ] checking for ld... /usr/bin/ld [INFO ] checking for ar... /usr/bin/ar [INFO ] checking for main in -lc... yes [INFO ] checking for main in -lqdbm... no [INFO ] configure: creating ./config.status [INFO ] config.status: creating Makefile [INFO ] config.status: creating LTmakefile [INFO ] config.status: creating qdbm.spec [INFO ] config.status: creating qdbm.pc [INFO ] #================================================================ [INFO ] # Ready to make. [INFO ] #================================================================ [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: yes [INFO ] Extended attributes: yes [INFO ] (cd bin/bbackupd; bsdmake -D RELEASE) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] ranlib: file: ../../release/lib/win32/win32.a(emu.o) has no symbols [INFO ] ranlib: file: ../../release/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] [RANLIB] win32 [INFO ] ranlib: file: ../../release/lib/win32/win32.a(emu.o) has no symbols [INFO ] ranlib: file: ../../release/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] ranlib: warning for library: ../../release/lib/win32/win32.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] Timer.cpp: In static member function 'static void Timers::Cleanup()': [INFO ] Timer.cpp:86: warning: unused variable 'result' [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] ranlib: file: ../../release/lib/common/common.a(DebugAssertFailed.o) has no symbols [INFO ] ranlib: file: ../../release/lib/common/common.a(DebugMemLeakFinder.o) has no symbols [INFO ] ranlib: file: ../../release/lib/common/common.a(DebugPrintf.o) has no symbols [INFO ] [RANLIB] common [INFO ] ranlib: file: ../../release/lib/common/common.a(DebugAssertFailed.o) has no symbols [INFO ] ranlib: file: ../../release/lib/common/common.a(DebugMemLeakFinder.o) has no symbols [INFO ] ranlib: file: ../../release/lib/common/common.a(DebugPrintf.o) has no symbols [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] ranlib: file: ../../release/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [RANLIB] server [INFO ] ranlib: file: ../../release/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] gcc -c -I. -I/usr/local/include -I/Users/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr depot.c [INFO ] gcc -c -I. -I/usr/local/include -I/Users/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr curia.c [INFO ] gcc -c -I. -I/usr/local/include -I/Users/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr relic.c [INFO ] gcc -c -I. -I/usr/local/include -I/Users/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr hovel.c [INFO ] gcc -c -I. -I/usr/local/include -I/Users/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr cabin.c [INFO ] gcc -c -I. -I/usr/local/include -I/Users/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr villa.c [INFO ] gcc -c -I. -I/usr/local/include -I/Users/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr vista.c [INFO ] gcc -c -I. -I/usr/local/include -I/Users/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr odeum.c [INFO ] gcc -c -I. -I/usr/local/include -I/Users/jamesog/include -I/usr/local/include -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 -D_POSIX_MAPPED_FILES=1 -D_POSIX_SYNCHRONIZED_IO=1 -DPIC=1 -D_THREAD_SAFE=1 -D_REENTRANT=1 -DNDEBUG -g -O2 -Wall -pedantic -fPIC -fsigned-char -O0 -fforce-addr myconf.c [INFO ] /usr/bin/ar rcsv libqdbm.a depot.o curia.o relic.o hovel.o cabin.o villa.o vista.o odeum.o myconf.o [INFO ] a - depot.o [INFO ] a - curia.o [INFO ] a - relic.o [INFO ] a - hovel.o [INFO ] a - cabin.o [INFO ] a - villa.o [INFO ] a - vista.o [INFO ] a - odeum.o [INFO ] a - myconf.o [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [INFO ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] (cd bin/bbackupquery; bsdmake -D RELEASE) [INFO ] [CXX] BackupQueries [ERROR ] BackupQueries.cpp: In member function 'void BackupQueries::List(int64_t, const std::string&, const bool*, bool)': [ERROR ] BackupQueries.cpp:547: warning: format not a string literal and no format arguments [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [ERROR ] bbackupquery.cpp: In function 'int main(int, const char**)': [ERROR ] bbackupquery.cpp:444: warning: deprecated conversion from string constant to 'char*' [INFO ] [LINK] bbackupquery [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] (cd bin/bbackupctl; bsdmake -D RELEASE) [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] cp -p COPYING.txt parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] cp -p LICENSE-GPL.txt parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] cp -p LICENSE-DUAL.txt parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] bsdmake -C docs htmlguide/man-html/bbackupd.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.html parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0/docs [INFO ] bsdmake -C docs htmlguide/man-html/bbackupquery.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupquery.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupquery.html parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0/docs [INFO ] bsdmake -C docs htmlguide/man-html/bbackupctl.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupctl.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupctl.html parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0/docs [INFO ] bsdmake -C docs htmlguide/man-html/bbackupd-config.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd-config.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd-config.html parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0/docs [INFO ] bsdmake -C docs htmlguide/man-html/bbackupd.conf.html [INFO ] [XSLTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd.conf.xml [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.conf.html parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0/docs [INFO ] bsdmake -C qdbm libqdbm.a [INFO ] `libqdbm.a' is up to date. [INFO ] bsdmake -C docs man/bbackupd.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbackupd.xml [INFO ] [GZIP] man/bbackupd.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] cp -p docs/man/bbackupd.8.gz parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] bsdmake -C docs man/bbackupquery.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbackupquery.xml [INFO ] [GZIP] man/bbackupquery.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] cp -p docs/man/bbackupquery.8.gz parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] bsdmake -C docs man/bbackupctl.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbackupctl.xml [INFO ] [GZIP] man/bbackupctl.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] cp -p docs/man/bbackupctl.8.gz parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] bsdmake -C docs man/bbackupd-config.8.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbackupd-config.xml [INFO ] [GZIP] man/bbackupd-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] cp -p docs/man/bbackupd-config.8.gz parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] bsdmake -C docs man/bbackupd.conf.5.gz [INFO ] [XSLTPROC] docbook/bb-man.xsl docbook/bbackupd.conf.xml [INFO ] [GZIP] man/bbackupd.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] cp -p docs/man/bbackupd.conf.5.gz parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] mkdir -p parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] cp -p contrib/mac_osx/org.boxbackup.bbackupd.plist parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] test -d parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 || mkdir parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] cp parcels/scripts/install-backup-client parcels/boxbackup-trunk_2644-backup-client-darwin10.2.0 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2644-backup-client-darwin10.2.0 | gzip -9 - > boxbackup-trunk_2644-backup-client-darwin10.2.0.tgz ) Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 57731): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 57734): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 57741): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 57753): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 57806): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 57903): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 57984): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3f is unattached. [INFO ] WARNING: Object 0x3f is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3f is unattached. [INFO ] WARNING: Object 0x3f is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x7 references object 0x30 which does not exist. [INFO ] WARNING: Directory ID 0x8 has bad structure [INFO ] WARNING: Directory ID 0x8 has wrong size for object 0x36 [INFO ] WARNING: Directory ID 0x1b has wrong container ID. [INFO ] WARNING: Object 0x59 is unattached. [INFO ] WARNING: Missing directory 0x12 could be recreated. [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x37: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x7 references object 0x30 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x8 has bad structure [INFO ] WARNING: Directory ID 0x8 has wrong size for object 0x36 [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0x1b has wrong container ID. [INFO ] WARNING: Object 0x59 is unattached. [INFO ] WARNING: Recreating missing directory 0x12 [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x37: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o1b found [INFO ] WARNING: Directory ID 0x18 references object 0x5b which is already contained. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1b could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: Object 0x86 is unattached. [INFO ] WARNING: Object 0x87 is unattached. [INFO ] WARNING: Object 0x88 is unattached. [INFO ] WARNING: Object 0x89 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o1b found, deleting [INFO ] WARNING: Directory ID 0x18 references object 0x5b which is already contained. [INFO ] WARNING: Fixing directory ID 0x18 [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1b [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: Object 0x86 is unattached. [INFO ] WARNING: Object 0x87 is unattached. [INFO ] WARNING: Object 0x88 is unattached. [INFO ] WARNING: Object 0x89 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o0c found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o82 found [INFO ] WARNING: Directory ID 0x1a references object 0x82 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Object 0x49 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o0c found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o82 found, deleting [INFO ] WARNING: Directory ID 0x1a references object 0x82 which does not exist. [INFO ] WARNING: Fixing directory ID 0x1a [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Object 0x49 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 57976): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 58103): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPRequest [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Connection reset by peer (54) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 58277): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 58292): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] U . [INFO ] Checked out revision 2503. -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From subversion at boxbackup.org Mon May 2 14:36:11 2011 From: subversion at boxbackup.org (subversion at boxbackup.org) Date: Mon, 2 May 2011 14:36:11 +0100 (BST) Subject: [Box Backup-commit] COMMIT r2956 - in box/trunk: . infrastructure Message-ID: <20110502133611.EA3E718D2D8@www.boxbackup.org> Author: jamesog Date: 2011-05-02 14:36:11 +0100 (Mon, 02 May 2011) New Revision: 2956 Modified: box/trunk/configure.ac box/trunk/infrastructure/makeparcels.pl.in Log: Define PACKAGE_TARNAME variable in autoconf, change doc install location from parcel name to this for neatness. Modified: box/trunk/configure.ac =================================================================== --- box/trunk/configure.ac 2011-05-02 13:17:45 UTC (rev 2955) +++ box/trunk/configure.ac 2011-05-02 13:36:11 UTC (rev 2956) @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT([Box Backup], 0.11, [boxbackup at boxbackup.org]) +AC_INIT([Box Backup], 0.11, [boxbackup at boxbackup.org],[boxbackup]) AC_CONFIG_SRCDIR([lib/common/Box.h]) AC_CONFIG_HEADERS([lib/common/BoxConfig.h]) Modified: box/trunk/infrastructure/makeparcels.pl.in =================================================================== --- box/trunk/infrastructure/makeparcels.pl.in 2011-05-02 13:17:45 UTC (rev 2955) +++ box/trunk/infrastructure/makeparcels.pl.in 2011-05-02 13:36:11 UTC (rev 2956) @@ -302,7 +302,7 @@ if ($type eq 'html') { - $dest = "share/doc/$version"; + $dest = "share/doc/@PACKAGE_TARNAME@"; $name = "docs/$name.html"; } From trac at boxbackup.org Mon May 2 14:37:52 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 13:37:52 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2955] Trunk Message-ID: <20110502133752.C172718D2DB@www.boxbackup.org> Failed build of Box Backup [2955] --------------------------------------------------------------------- Changeset: 2955 - Committed by: jamesog Build Configuration: Trunk Build Platform: Mac OS X 10.6 Build Slave: jmac Build Number: 1749 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] getopt_long [INFO ] [CXX] emu [INFO ] [AR] win32 [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] [RANLIB] win32 [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/win32/win32.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [INFO ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] DebugPrintf [INFO ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [INFO ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [INFO ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [INFO ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] /usr/bin/ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [RANLIB] server [INFO ] ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20166): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 20169): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 20175): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 20192): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [INFO ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] BackupStoreDaemon [INFO ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 20532): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 20581): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] BackupQueries.cpp: In member function ?void BackupQueries::List(int64_t, const std::string&, const bool*, bool)?: [INFO ] BackupQueries.cpp:437: warning: format not a string literal and no format arguments [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 20809): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 20804): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 20939): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 16 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 21198): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 21205): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23333): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23336): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 23342): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 23348): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:262: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:467: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:582: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x24c86f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:412: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 12 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../debug/test/bbackupd/test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 24024): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 24031): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 3.9092e-05 secs late [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../release/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 23997): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 24000): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 24006): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 24017): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 24114): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 24159): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 24255): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o17 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o17 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 24250): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 24386): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 17 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 24623): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 24630): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 5260): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 5264): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 5271): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 5279): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:262: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:467: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:582: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0xa8e6f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:412: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 12 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../debug/test/bbackupd/test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 5945): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 5952): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] (cd bin/bbstored; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] mkdir -p parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] (cd bin/bbstoreaccounts; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] mkdir -p parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbstored.8 docbook/bb-man.xsl docbook/bbstored.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [ERROR ] Note: Writing bbstored.8 [INFO ] gzip man/bbstored.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstoreaccounts.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbstoreaccounts.8 docbook/bb-man.xsl docbook/bbstoreaccounts.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [ERROR ] Note: Writing bbstoreaccounts.8 [INFO ] gzip man/bbstoreaccounts.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored-certs.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbstored-certs.8 docbook/bb-man.xsl docbook/bbstored-certs.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [ERROR ] Note: Writing bbstored-certs.8 [INFO ] gzip man/bbstored-certs.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored-config.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbstored-config.8 docbook/bb-man.xsl docbook/bbstored-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [ERROR ] Note: Writing bbstored-config.8 [INFO ] gzip man/bbstored-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] make -C docs man/raidfile-config.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/raidfile-config.8 docbook/bb-man.xsl docbook/raidfile-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [ERROR ] Note: Writing raidfile-config.8 [INFO ] gzip man/raidfile-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored.conf.5.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbstored.conf.5 docbook/bb-man.xsl docbook/bbstored.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [ERROR ] Note: Writing bbstored.conf.5 [INFO ] gzip man/bbstored.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] make -C docs man/raidfile.conf.5.gz [INFO ] make xslt [INFO ] xsltproc -o man/raidfile.conf.5 docbook/bb-man.xsl docbook/raidfile.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [ERROR ] Note: Writing raidfile.conf.5 [INFO ] gzip man/raidfile.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 || mkdir parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2503-backup-server-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2503-backup-server-freebsd7.2 | gzip -9 - > boxbackup-trunk_2503-backup-server-freebsd7.2.tgz ) -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 14:39:21 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 13:39:21 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2955] Trunk Message-ID: <20110502133921.2690818D2F6@www.boxbackup.org> Failed build of Box Backup [2955] --------------------------------------------------------------------- Changeset: 2955 - Committed by: jamesog Build Configuration: Trunk Build Platform: Solaris 10 x86 Build Slave: solaris-vbox Build Number: 1750 - Failures: Step: tests-debug Errors: Executing perl failed (error code 1) Log: [INFO ] ==> Debug tests start [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/win32' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/win32\"" -c emu.cpp -o ../../debug/lib/win32/emu.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/win32\"" -c getopt_long.cpp -o ../../debug/lib/win32/getopt_long.o [INFO ] (echo -n > ../../debug/lib/win32/win32.a; rm ../../debug/lib/win32/win32.a) [INFO ] ar cq ../../debug/lib/win32/win32.a ../../debug/lib/win32/emu.o ../../debug/lib/win32/getopt_long.o [INFO ] ranlib ../../debug/lib/win32/win32.a [INFO ] gmake[1]: Leaving directory `lib/win32' [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/common' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c BoxException.cpp -o ../../debug/lib/common/BoxException.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c BoxTime.cpp -o ../../debug/lib/common/BoxTime.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c BoxTimeToText.cpp -o ../../debug/lib/common/BoxTimeToText.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c BufferedStream.cpp -o ../../debug/lib/common/BufferedStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c BufferedWriteStream.cpp -o ../../debug/lib/common/BufferedWriteStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c CollectInBufferStream.cpp -o ../../debug/lib/common/CollectInBufferStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c Configuration.cpp -o ../../debug/lib/common/Configuration.o [ERROR ] In file included from FdGetLine.h:15, [ERROR ] from Configuration.cpp:21: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from Configuration.cpp:21: [ERROR ] FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [ERROR ] Configuration.cpp: In member function `bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [ERROR ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c ConversionString.cpp -o ../../debug/lib/common/ConversionString.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c DebugAssertFailed.cpp -o ../../debug/lib/common/DebugAssertFailed.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c DebugMemLeakFinder.cpp -o ../../debug/lib/common/DebugMemLeakFinder.o [ERROR ] DebugMemLeakFinder.cpp: In function `int memleakfinder_numleaks()': [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c DebugPrintf.cpp -o ../../debug/lib/common/DebugPrintf.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c EventWatchFilesystemObject.cpp -o ../../debug/lib/common/EventWatchFilesystemObject.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c ExcludeList.cpp -o ../../debug/lib/common/ExcludeList.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c FdGetLine.cpp -o ../../debug/lib/common/FdGetLine.o [ERROR ] In file included from FdGetLine.h:15, [ERROR ] from FdGetLine.cpp:18: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from FdGetLine.cpp:18: [ERROR ] FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c FileModificationTime.cpp -o ../../debug/lib/common/FileModificationTime.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c FileStream.cpp -o ../../debug/lib/common/FileStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c GetLine.cpp -o ../../debug/lib/common/GetLine.o [ERROR ] In file included from GetLine.cpp:18: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c IOStream.cpp -o ../../debug/lib/common/IOStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c IOStreamGetLine.cpp -o ../../debug/lib/common/IOStreamGetLine.o [ERROR ] In file included from IOStreamGetLine.h:15, [ERROR ] from IOStreamGetLine.cpp:11: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from IOStreamGetLine.cpp:11: [ERROR ] IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c InvisibleTempFileStream.cpp -o ../../debug/lib/common/InvisibleTempFileStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c Logging.cpp -o ../../debug/lib/common/Logging.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c MemBlockStream.cpp -o ../../debug/lib/common/MemBlockStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c NamedLock.cpp -o ../../debug/lib/common/NamedLock.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c PartialReadStream.cpp -o ../../debug/lib/common/PartialReadStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c PathUtils.cpp -o ../../debug/lib/common/PathUtils.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c RateLimitingStream.cpp -o ../../debug/lib/common/RateLimitingStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c ReadGatherStream.cpp -o ../../debug/lib/common/ReadGatherStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c ReadLoggingStream.cpp -o ../../debug/lib/common/ReadLoggingStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c StreamableMemBlock.cpp -o ../../debug/lib/common/StreamableMemBlock.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c Test.cpp -o ../../debug/lib/common/Test.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c Timer.cpp -o ../../debug/lib/common/Timer.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c UnixUser.cpp -o ../../debug/lib/common/UnixUser.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c Utils.cpp -o ../../debug/lib/common/Utils.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c WaitForEvent.cpp -o ../../debug/lib/common/WaitForEvent.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c ZeroStream.cpp -o ../../debug/lib/common/ZeroStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c autogen_CommonException.cpp -o ../../debug/lib/common/autogen_CommonException.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/common\"" -c autogen_ConversionException.cpp -o ../../debug/lib/common/autogen_ConversionException.o [INFO ] (echo -n > ../../debug/lib/common/common.a; rm ../../debug/lib/common/common.a) [INFO ] ar cq ../../debug/lib/common/common.a ../../debug/lib/common/BoxException.o ../../debug/lib/common/BoxTime.o ../../debug/lib/common/BoxTimeToText.o ../../debug/lib/common/BufferedStream.o ../../debug/lib/common/BufferedWriteStream.o ../../debug/lib/common/CollectInBufferStream.o ../../debug/lib/common/Configuration.o ../../debug/lib/common/ConversionString.o ../../debug/lib/common/DebugAssertFailed.o ../../debug/lib/common/DebugMemLeakFinder.o ../../debug/lib/common/DebugPrintf.o ../../debug/lib/common/EventWatchFilesystemObject.o ../../debug/lib/common/ExcludeList.o ../../debug/lib/common/FdGetLine.o ../../debug/lib/common/FileModificationTime.o ../../debug/lib/common/FileStream.o ../../debug/lib/common/GetLine.o ../../debug/lib/common/IOStream.o ../../debug/lib/common/IOStreamGetLine.o ../../debug/lib/common/InvisibleTempFileStream.o ../../debug/lib/common/Logging.o ../../debug/lib/common/MemBlockStream.o ../../debug/lib/common/NamedLock.o ../../debug/lib/c ommon/PartialReadStream.o ../../debug/lib/common/PathUtils.o ../../debug/lib/common/RateLimitingStream.o ../../debug/lib/common/ReadGatherStream.o ../../debug/lib/common/ReadLoggingStream.o ../../debug/lib/common/StreamableMemBlock.o ../../debug/lib/common/Test.o ../../debug/lib/common/Timer.o ../../debug/lib/common/UnixUser.o ../../debug/lib/common/Utils.o ../../debug/lib/common/WaitForEvent.o ../../debug/lib/common/ZeroStream.o ../../debug/lib/common/autogen_CommonException.o ../../debug/lib/common/autogen_ConversionException.o [INFO ] ranlib ../../debug/lib/common/common.a [INFO ] gmake[1]: Leaving directory `lib/common' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/common\"" -c _main.cpp -o ../../debug/test/common/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/common\"" -c testcommon.cpp -o ../../debug/test/common/testcommon.o [ERROR ] In file included from ../../lib/common/FdGetLine.h:15, [ERROR ] from testcommon.cpp:18: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testcommon.cpp:18: [ERROR ] ../../lib/common/FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testcommon.cpp:22: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/common/test ../../debug/test/common/_main.o ../../debug/test/common/testcommon.o ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: [ ] imbalance or syntax error [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/crypto' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/crypto\"" -c CipherAES.cpp -o ../../debug/lib/crypto/CipherAES.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/crypto\"" -c CipherBlowfish.cpp -o ../../debug/lib/crypto/CipherBlowfish.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/crypto\"" -c CipherContext.cpp -o ../../debug/lib/crypto/CipherContext.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/crypto\"" -c CipherDescription.cpp -o ../../debug/lib/crypto/CipherDescription.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/crypto\"" -c MD5Digest.cpp -o ../../debug/lib/crypto/MD5Digest.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/crypto\"" -c Random.cpp -o ../../debug/lib/crypto/Random.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/crypto\"" -c RollingChecksum.cpp -o ../../debug/lib/crypto/RollingChecksum.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/crypto\"" -c autogen_CipherException.cpp -o ../../debug/lib/crypto/autogen_CipherException.o [INFO ] (echo -n > ../../debug/lib/crypto/crypto.a; rm ../../debug/lib/crypto/crypto.a) [INFO ] ar cq ../../debug/lib/crypto/crypto.a ../../debug/lib/crypto/CipherAES.o ../../debug/lib/crypto/CipherBlowfish.o ../../debug/lib/crypto/CipherContext.o ../../debug/lib/crypto/CipherDescription.o ../../debug/lib/crypto/MD5Digest.o ../../debug/lib/crypto/Random.o ../../debug/lib/crypto/RollingChecksum.o ../../debug/lib/crypto/autogen_CipherException.o [INFO ] ranlib ../../debug/lib/crypto/crypto.a [INFO ] gmake[1]: Leaving directory `lib/crypto' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/crypto\"" -c _main.cpp -o ../../debug/test/crypto/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/crypto\"" -c testcrypto.cpp -o ../../debug/test/crypto/testcrypto.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/crypto/test ../../debug/test/crypto/_main.o ../../debug/test/crypto/testcrypto.o ../../debug/lib/crypto/crypto.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/crypto/testfiles [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/compress' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/compress -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/compress\"" -c CompressStream.cpp -o ../../debug/lib/compress/CompressStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/compress -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/compress\"" -c autogen_CompressException.cpp -o ../../debug/lib/compress/autogen_CompressException.o [INFO ] (echo -n > ../../debug/lib/compress/compress.a; rm ../../debug/lib/compress/compress.a) [INFO ] ar cq ../../debug/lib/compress/compress.a ../../debug/lib/compress/CompressStream.o ../../debug/lib/compress/autogen_CompressException.o [INFO ] ranlib ../../debug/lib/compress/compress.a [INFO ] gmake[1]: Leaving directory `lib/compress' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/compress -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/compress\"" -c _main.cpp -o ../../debug/test/compress/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/compress -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/compress\"" -c testcompress.cpp -o ../../debug/test/compress/testcompress.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/compress/test ../../debug/test/compress/_main.o ../../debug/test/compress/testcompress.o ../../debug/lib/compress/compress.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/compress/testfiles [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/intercept; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/intercept/intercept.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/intercept/intercept.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/intercept' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/intercept\"" -c intercept.cpp -o ../../debug/lib/intercept/intercept.o [INFO ] (echo -n > ../../debug/lib/intercept/intercept.a; rm ../../debug/lib/intercept/intercept.a) [INFO ] ar cq ../../debug/lib/intercept/intercept.a ../../debug/lib/intercept/intercept.o [INFO ] ranlib ../../debug/lib/intercept/intercept.a [INFO ] gmake[1]: Leaving directory `lib/intercept' [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/raidfile' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/raidfile\"" -c RaidFileController.cpp -o ../../debug/lib/raidfile/RaidFileController.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/raidfile\"" -c RaidFileRead.cpp -o ../../debug/lib/raidfile/RaidFileRead.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/raidfile\"" -c RaidFileUtil.cpp -o ../../debug/lib/raidfile/RaidFileUtil.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/raidfile\"" -c RaidFileWrite.cpp -o ../../debug/lib/raidfile/RaidFileWrite.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/raidfile\"" -c autogen_RaidFileException.cpp -o ../../debug/lib/raidfile/autogen_RaidFileException.o [INFO ] (echo -n > ../../debug/lib/raidfile/raidfile.a; rm ../../debug/lib/raidfile/raidfile.a) [INFO ] ar cq ../../debug/lib/raidfile/raidfile.a ../../debug/lib/raidfile/RaidFileController.o ../../debug/lib/raidfile/RaidFileRead.o ../../debug/lib/raidfile/RaidFileUtil.o ../../debug/lib/raidfile/RaidFileWrite.o ../../debug/lib/raidfile/autogen_RaidFileException.o [INFO ] ranlib ../../debug/lib/raidfile/raidfile.a [INFO ] gmake[1]: Leaving directory `lib/raidfile' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/raidfile\"" -c _main.cpp -o ../../debug/test/raidfile/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/raidfile\"" -c testraidfile.cpp -o ../../debug/test/raidfile/testraidfile.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/raidfile/test ../../debug/test/raidfile/_main.o ../../debug/test/raidfile/testraidfile.o ../../debug/lib/raidfile/raidfile.a ../../debug/lib/intercept/intercept.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 1024) == 1024] failed at testraidfile.cpp:733 [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 512) == 512] failed at testraidfile.cpp:738 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) (Failed to read parity RaidFile: testfiles/0_2/testdd.rf: No such file or directory (2)) at RaidFileRead.cpp(1274) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] FAILED: Exception caught: RaidFile OSError [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q NODEPS=1 libqdbm.a \ [INFO ] || gmake NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/server' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/server\"" -c Daemon.cpp -o ../../debug/lib/server/Daemon.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/server\"" -c LocalProcessStream.cpp -o ../../debug/lib/server/LocalProcessStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/server\"" -c Protocol.cpp -o ../../debug/lib/server/Protocol.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/server\"" -c ProtocolObject.cpp -o ../../debug/lib/server/ProtocolObject.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/server\"" -c ProtocolUncertainStream.cpp -o ../../debug/lib/server/ProtocolUncertainStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/server\"" -c SSLLib.cpp -o ../../debug/lib/server/SSLLib.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/server\"" -c ServerControl.cpp -o ../../debug/lib/server/ServerControl.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/server\"" -c Socket.cpp -o ../../debug/lib/server/Socket.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/server\"" -c SocketStream.cpp -o ../../debug/lib/server/SocketStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/server\"" -c SocketStreamTLS.cpp -o ../../debug/lib/server/SocketStreamTLS.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/server\"" -c TLSContext.cpp -o ../../debug/lib/server/TLSContext.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/server\"" -c WinNamedPipeStream.cpp -o ../../debug/lib/server/WinNamedPipeStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/server\"" -c autogen_ConnectionException.cpp -o ../../debug/lib/server/autogen_ConnectionException.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/server\"" -c autogen_ServerException.cpp -o ../../debug/lib/server/autogen_ServerException.o [INFO ] (echo -n > ../../debug/lib/server/server.a; rm ../../debug/lib/server/server.a) [INFO ] ar cq ../../debug/lib/server/server.a ../../debug/lib/server/Daemon.o ../../debug/lib/server/LocalProcessStream.o ../../debug/lib/server/Protocol.o ../../debug/lib/server/ProtocolObject.o ../../debug/lib/server/ProtocolUncertainStream.o ../../debug/lib/server/SSLLib.o ../../debug/lib/server/ServerControl.o ../../debug/lib/server/Socket.o ../../debug/lib/server/SocketStream.o ../../debug/lib/server/SocketStreamTLS.o ../../debug/lib/server/TLSContext.o ../../debug/lib/server/WinNamedPipeStream.o ../../debug/lib/server/autogen_ConnectionException.o ../../debug/lib/server/autogen_ServerException.o [INFO ] ranlib ../../debug/lib/server/server.a [INFO ] gmake[1]: Leaving directory `lib/server' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/basicserver\"" -c TestCommands.cpp -o ../../debug/test/basicserver/TestCommands.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/basicserver\"" -c TestContext.cpp -o ../../debug/test/basicserver/TestContext.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/basicserver\"" -c _main.cpp -o ../../debug/test/basicserver/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/basicserver\"" -c autogen_TestProtocolClient.cpp -o ../../debug/test/basicserver/autogen_TestProtocolClient.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/basicserver\"" -c autogen_TestProtocolServer.cpp -o ../../debug/test/basicserver/autogen_TestProtocolServer.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/basicserver\"" -c testbasicserver.cpp -o ../../debug/test/basicserver/testbasicserver.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from testbasicserver.cpp:24: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testbasicserver.cpp:24: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/basicserver/test ../../debug/test/basicserver/TestCommands.o ../../debug/test/basicserver/TestContext.o ../../debug/test/basicserver/_main.o ../../debug/test/basicserver/autogen_TestProtocolClient.o ../../debug/test/basicserver/autogen_TestProtocolServer.o ../../debug/test/basicserver/testbasicserver.o ../../debug/lib/server/server.a ../../debug/lib/common/common.a ../../qdbm/libqdbm.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 7925): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 7929): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 7936): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 7943): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q NODEPS=1 libqdbm.a \ [INFO ] || gmake NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/backupstore' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupClientFileAttributes.cpp -o ../../debug/lib/backupstore/BackupClientFileAttributes.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupCommands.cpp -o ../../debug/lib/backupstore/BackupCommands.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreAccountDatabase.cpp -o ../../debug/lib/backupstore/BackupStoreAccountDatabase.o [ERROR ] In file included from ../../lib/common/FdGetLine.h:15, [ERROR ] from BackupStoreAccountDatabase.cpp:20: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupStoreAccountDatabase.cpp:20: [ERROR ] ../../lib/common/FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreAccounts.cpp -o ../../debug/lib/backupstore/BackupStoreAccounts.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreCheck.cpp -o ../../debug/lib/backupstore/BackupStoreCheck.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreCheck2.cpp -o ../../debug/lib/backupstore/BackupStoreCheck2.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreCheckData.cpp -o ../../debug/lib/backupstore/BackupStoreCheckData.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreConfigVerify.cpp -o ../../debug/lib/backupstore/BackupStoreConfigVerify.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreContext.cpp -o ../../debug/lib/backupstore/BackupStoreContext.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreDirectory.cpp -o ../../debug/lib/backupstore/BackupStoreDirectory.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreFile.cpp -o ../../debug/lib/backupstore/BackupStoreFile.o [ERROR ] BackupStoreFile.cpp: In static member function `static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreFileCryptVar.cpp -o ../../debug/lib/backupstore/BackupStoreFileCryptVar.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreFileEncodeStream.cpp -o ../../debug/lib/backupstore/BackupStoreFileEncodeStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreFileRevDiff.cpp -o ../../debug/lib/backupstore/BackupStoreFileRevDiff.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreFilename.cpp -o ../../debug/lib/backupstore/BackupStoreFilename.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreFilenameClear.cpp -o ../../debug/lib/backupstore/BackupStoreFilenameClear.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreInfo.cpp -o ../../debug/lib/backupstore/BackupStoreInfo.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreRefCountDatabase.cpp -o ../../debug/lib/backupstore/BackupStoreRefCountDatabase.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c StoreStructure.cpp -o ../../debug/lib/backupstore/StoreStructure.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c autogen_BackupProtocolClient.cpp -o ../../debug/lib/backupstore/autogen_BackupProtocolClient.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c autogen_BackupProtocolServer.cpp -o ../../debug/lib/backupstore/autogen_BackupProtocolServer.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupstore\"" -c autogen_BackupStoreException.cpp -o ../../debug/lib/backupstore/autogen_BackupStoreException.o [INFO ] (echo -n > ../../debug/lib/backupstore/backupstore.a; rm ../../debug/lib/backupstore/backupstore.a) [INFO ] ar cq ../../debug/lib/backupstore/backupstore.a ../../debug/lib/backupstore/BackupClientFileAttributes.o ../../debug/lib/backupstore/BackupCommands.o ../../debug/lib/backupstore/BackupStoreAccountDatabase.o ../../debug/lib/backupstore/BackupStoreAccounts.o ../../debug/lib/backupstore/BackupStoreCheck.o ../../debug/lib/backupstore/BackupStoreCheck2.o ../../debug/lib/backupstore/BackupStoreCheckData.o ../../debug/lib/backupstore/BackupStoreConfigVerify.o ../../debug/lib/backupstore/BackupStoreContext.o ../../debug/lib/backupstore/BackupStoreDirectory.o ../../debug/lib/backupstore/BackupStoreFile.o ../../debug/lib/backupstore/BackupStoreFileCryptVar.o ../../debug/lib/backupstore/BackupStoreFileEncodeStream.o ../../debug/lib/backupstore/BackupStoreFileRevDiff.o ../../debug/lib/backupstore/BackupStoreFilename.o ../../debug/lib/backupstore/BackupStoreFilenameClear.o ../../debug/lib/backupstore/BackupStoreInfo.o ../../debug/lib/backupstore/BackupStoreRefCountDatabas e.o ../../debug/lib/backupstore/StoreStructure.o ../../debug/lib/backupstore/autogen_BackupProtocolClient.o ../../debug/lib/backupstore/autogen_BackupProtocolServer.o ../../debug/lib/backupstore/autogen_BackupStoreException.o [INFO ] ranlib ../../debug/lib/backupstore/backupstore.a [INFO ] gmake[1]: Leaving directory `lib/backupstore' [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/backupclient' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupClientCryptoKeys.cpp -o ../../debug/lib/backupclient/BackupClientCryptoKeys.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupClientMakeExcludeList.cpp -o ../../debug/lib/backupclient/BackupClientMakeExcludeList.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupClientRestore.cpp -o ../../debug/lib/backupclient/BackupClientRestore.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupDaemonConfigVerify.cpp -o ../../debug/lib/backupclient/BackupDaemonConfigVerify.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupStoreFileCmbDiff.cpp -o ../../debug/lib/backupclient/BackupStoreFileCmbDiff.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupStoreFileCmbIdx.cpp -o ../../debug/lib/backupclient/BackupStoreFileCmbIdx.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupStoreFileCombine.cpp -o ../../debug/lib/backupclient/BackupStoreFileCombine.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupStoreFileDiff.cpp -o ../../debug/lib/backupclient/BackupStoreFileDiff.o [ERROR ] BackupStoreFileDiff.cpp: In function `void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [ERROR ] BackupStoreFileDiff.cpp:1033: warning: long long int format, long int arg (arg 3) [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupStoreObjectDump.cpp -o ../../debug/lib/backupclient/BackupStoreObjectDump.o [INFO ] (echo -n > ../../debug/lib/backupclient/backupclient.a; rm ../../debug/lib/backupclient/backupclient.a) [INFO ] ar cq ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupclient/BackupClientCryptoKeys.o ../../debug/lib/backupclient/BackupClientMakeExcludeList.o ../../debug/lib/backupclient/BackupClientRestore.o ../../debug/lib/backupclient/BackupDaemonConfigVerify.o ../../debug/lib/backupclient/BackupStoreFileCmbDiff.o ../../debug/lib/backupclient/BackupStoreFileCmbIdx.o ../../debug/lib/backupclient/BackupStoreFileCombine.o ../../debug/lib/backupclient/BackupStoreFileDiff.o ../../debug/lib/backupclient/BackupStoreObjectDump.o [INFO ] ranlib ../../debug/lib/backupclient/backupclient.a [INFO ] gmake[1]: Leaving directory `lib/backupclient' [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] gmake[1]: Entering directory `bin/bbstoreaccounts' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbstoreaccounts\"" -c bbstoreaccounts.cpp -o ../../debug/bin/bbstoreaccounts/bbstoreaccounts.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -L/usr/local/lib -m64 -o ../../debug/bin/bbstoreaccounts/bbstoreaccounts ../../debug/bin/bbstoreaccounts/bbstoreaccounts.o ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] gmake[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] ) [INFO ] gmake[1]: Entering directory `bin/bbstored' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbstored\"" -c BBStoreDHousekeeping.cpp -o ../../debug/bin/bbstored/BBStoreDHousekeeping.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from BackupStoreDaemon.h:18, [ERROR ] from BBStoreDHousekeeping.cpp:14: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupStoreDaemon.h:18, [ERROR ] from BBStoreDHousekeeping.cpp:14: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbstored\"" -c BackupStoreDaemon.cpp -o ../../debug/bin/bbstored/BackupStoreDaemon.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from BackupStoreDaemon.h:18, [ERROR ] from BackupStoreDaemon.cpp:21: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupStoreDaemon.h:18, [ERROR ] from BackupStoreDaemon.cpp:21: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbstored\"" -c HousekeepStoreAccount.cpp -o ../../debug/bin/bbstored/HousekeepStoreAccount.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from BackupStoreDaemon.h:18, [ERROR ] from HousekeepStoreAccount.cpp:17: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupStoreDaemon.h:18, [ERROR ] from HousekeepStoreAccount.cpp:17: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [ERROR ] HousekeepStoreAccount.cpp: In member function `void HousekeepStoreAccount::DoHousekeeping(bool)': [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function `bool HousekeepStoreAccount::ScanDirectory(int64_t)': [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbstored\"" -c bbstored.cpp -o ../../debug/bin/bbstored/bbstored.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from BackupStoreDaemon.h:18, [ERROR ] from bbstored.cpp:11: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupStoreDaemon.h:18, [ERROR ] from bbstored.cpp:11: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -L/usr/local/lib -m64 -o ../../debug/bin/bbstored/bbstored ../../debug/bin/bbstored/BBStoreDHousekeeping.o ../../debug/bin/bbstored/BackupStoreDaemon.o ../../debug/bin/bbstored/HousekeepStoreAccount.o ../../debug/bin/bbstored/bbstored.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] gmake[1]: Leaving directory `bin/bbstored' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupstore\"" -c _main.cpp -o ../../debug/test/backupstore/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupstore\"" -c testbackupstore.cpp -o ../../debug/test/backupstore/testbackupstore.o [ERROR ] testbackupstore.cpp: In function `void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: long long unsigned int format, int64_t arg (arg 2) [ERROR ] testbackupstore.cpp: In function `void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function `int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: long long unsigned int format, int64_t arg (arg 3) [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/backupstore/test ../../debug/test/backupstore/../../bin/bbstored/HousekeepStoreAccount.o ../../debug/test/backupstore/_main.o ../../debug/test/backupstore/testbackupstore.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Block 0x5f05d0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirsWARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] , depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 8167): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 8230): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q NODEPS=1 libqdbm.a \ [INFO ] || gmake NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupctl; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbackupctl/bbackupctl \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbackupctl/bbackupctl \ [INFO ] ) [INFO ] gmake[1]: Entering directory `bin/bbackupctl' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbackupctl\"" -c bbackupctl.cpp -o ../../debug/bin/bbackupctl/bbackupctl.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from bbackupctl.cpp:26: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from bbackupctl.cpp:26: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -L/usr/local/lib -m64 -o ../../debug/bin/bbackupctl/bbackupctl ../../debug/bin/bbackupctl/bbackupctl.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] gmake[1]: Leaving directory `bin/bbackupctl' [INFO ] ( \ [INFO ] cd ../../bin/bbackupd; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbackupd/bbackupd \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbackupd/bbackupd \ [INFO ] ) [INFO ] gmake[1]: Entering directory `bin/bbackupd' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbackupd\"" -c BackupClientContext.cpp -o ../../debug/bin/bbackupd/BackupClientContext.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbackupd\"" -c BackupClientDeleteList.cpp -o ../../debug/bin/bbackupd/BackupClientDeleteList.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbackupd\"" -c BackupClientDirectoryRecord.cpp -o ../../debug/bin/bbackupd/BackupClientDirectoryRecord.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbackupd\"" -c BackupClientInodeToIDMap.cpp -o ../../debug/bin/bbackupd/BackupClientInodeToIDMap.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbackupd\"" -c BackupDaemon.cpp -o ../../debug/bin/bbackupd/BackupDaemon.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from BackupDaemon.cpp:74: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupDaemon.cpp:74: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbackupd\"" -c Win32BackupService.cpp -o ../../debug/bin/bbackupd/Win32BackupService.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbackupd\"" -c Win32ServiceFunctions.cpp -o ../../debug/bin/bbackupd/Win32ServiceFunctions.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbackupd\"" -c autogen_ClientException.cpp -o ../../debug/bin/bbackupd/autogen_ClientException.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbackupd\"" -c bbackupd.cpp -o ../../debug/bin/bbackupd/bbackupd.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -L/usr/local/lib -m64 -o ../../debug/bin/bbackupd/bbackupd ../../debug/bin/bbackupd/BackupClientContext.o ../../debug/bin/bbackupd/BackupClientDeleteList.o ../../debug/bin/bbackupd/BackupClientDirectoryRecord.o ../../debug/bin/bbackupd/BackupClientInodeToIDMap.o ../../debug/bin/bbackupd/BackupDaemon.o ../../debug/bin/bbackupd/Win32BackupService.o ../../debug/bin/bbackupd/Win32ServiceFunctions.o ../../debug/bin/bbackupd/autogen_ClientException.o ../../debug/bin/bbackupd/bbackupd.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] gmake[1]: Leaving directory `bin/bbackupd' [INFO ] ( \ [INFO ] cd ../../bin/bbackupquery; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbackupquery/bbackupquery \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbackupquery/bbackupquery \ [INFO ] ) [INFO ] gmake[1]: Entering directory `bin/bbackupquery' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbackupquery\"" -c BackupQueries.cpp -o ../../debug/bin/bbackupquery/BackupQueries.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbackupquery\"" -c CommandCompletion.cpp -o ../../debug/bin/bbackupquery/CommandCompletion.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbackupquery\"" -c autogen_Documentation.cpp -o ../../debug/bin/bbackupquery/autogen_Documentation.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"bin/bbackupquery\"" -c bbackupquery.cpp -o ../../debug/bin/bbackupquery/bbackupquery.o [ERROR ] In file included from ../../lib/common/FdGetLine.h:15, [ERROR ] from bbackupquery.cpp:55: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from bbackupquery.cpp:55: [ERROR ] ../../lib/common/FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -L/usr/local/lib -m64 -o ../../debug/bin/bbackupquery/bbackupquery ../../debug/bin/bbackupquery/BackupQueries.o ../../debug/bin/bbackupquery/CommandCompletion.o ../../debug/bin/bbackupquery/autogen_Documentation.o ../../debug/bin/bbackupquery/bbackupquery.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] gmake[1]: Leaving directory `bin/bbackupquery' [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] ) [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupstorefix\"" -c _main.cpp -o ../../debug/test/backupstorefix/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupstorefix\"" -c testbackupstorefix.cpp -o ../../debug/test/backupstorefix/testbackupstorefix.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/backupstorefix/test ../../debug/test/backupstorefix/_main.o ../../debug/test/backupstorefix/testbackupstorefix.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 8384): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: Object 0x85 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksUsed changed from 282 to 284 [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 4 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: Object 0x85 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksUsed changed from 282 to 284 [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 4 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0xe has wrong container ID. [INFO ] WARNING: Directory ID 0x17 references object 0x78 which does not exist. [INFO ] WARNING: Directory ID 0x18 has bad structure [INFO ] WARNING: Directory ID 0x18 has wrong size for object 0x7b [INFO ] WARNING: Object 0x64 is unattached. [INFO ] WARNING: Missing directory 0x12 could be recreated. [INFO ] WARNING: Object 0x65 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x7c: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0xe has wrong container ID. [INFO ] WARNING: Directory ID 0x17 references object 0x78 which does not exist. [INFO ] WARNING: Fixing directory ID 0x17 [INFO ] WARNING: Directory ID 0x18 has bad structure [INFO ] WARNING: Directory ID 0x18 has wrong size for object 0x7b [INFO ] WARNING: Fixing directory ID 0x18 [INFO ] WARNING: Object 0x64 is unattached. [INFO ] WARNING: Recreating missing directory 0x12 [INFO ] WARNING: Object 0x65 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x7c: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/03/o02 found [INFO ] WARNING: Directory ID 0xb references object 0x2a which is already contained. [INFO ] WARNING: Object 0x53 is unattached. [INFO ] WARNING: Missing directory 0xe could be recreated. [INFO ] WARNING: Object 0x54 is unattached. [INFO ] WARNING: Object 0x55 is unattached. [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/03/o02 found, deleting [INFO ] WARNING: Directory ID 0xb references object 0x2a which is already contained. [INFO ] WARNING: Fixing directory ID 0xb [INFO ] WARNING: Object 0x53 is unattached. [INFO ] WARNING: Recreating missing directory 0xe [INFO ] WARNING: Object 0x54 is unattached. [INFO ] WARNING: Object 0x55 is unattached. [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/03/01/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/00/01/o02 found [INFO ] WARNING: Directory ID 0xd references object 0x4e which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: Missing directory 0x1c could be recreated. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/03/01/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/00/01/o02 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x4e which does not exist. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: Recreating missing directory 0x1c [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 8377): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q NODEPS=1 libqdbm.a \ [INFO ] || gmake NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] ) [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupstorepatch\"" -c _main.cpp -o ../../debug/test/backupstorepatch/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupstorepatch\"" -c testbackupstorepatch.cpp -o ../../debug/test/backupstorepatch/testbackupstorepatch.o [ERROR ] testbackupstorepatch.cpp: In function `int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: long long int format, int64_t arg (arg 2) [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/backupstorepatch/test ../../debug/test/backupstorepatch/_main.o ../../debug/test/backupstorepatch/testbackupstorepatch.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupstorepatch/testfiles [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] ................................ [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 8544): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q NODEPS=1 libqdbm.a \ [INFO ] || gmake NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupdiff\"" -c _main.cpp -o ../../debug/test/backupdiff/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupdiff\"" -c difftestfiles.cpp -o ../../debug/test/backupdiff/difftestfiles.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupdiff\"" -c testbackupdiff.cpp -o ../../debug/test/backupdiff/testbackupdiff.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/backupdiff/test ../../debug/test/backupdiff/_main.o ../../debug/test/backupdiff/difftestfiles.o ../../debug/test/backupdiff/testbackupdiff.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupdiff/testfiles [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 6 seconds [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q NODEPS=1 libqdbm.a \ [INFO ] || gmake NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/intercept; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/intercept/intercept.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/intercept/intercept.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupctl; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbackupctl/bbackupctl \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbackupctl/bbackupctl \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupquery; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbackupquery/bbackupquery \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbackupquery/bbackupquery \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupd; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbackupd/bbackupd \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbackupd/bbackupd \ [INFO ] ) [ERROR ] gmake: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q NODEPS=1 libqdbm.a \ [INFO ] || gmake NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/httpserver; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/httpserver/httpserver.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/httpserver/httpserver.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/httpserver' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPQueryDecoder.cpp -o ../../debug/lib/httpserver/HTTPQueryDecoder.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPRequest.cpp -o ../../debug/lib/httpserver/HTTPRequest.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from HTTPRequest.cpp:22: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from HTTPRequest.cpp:22: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPResponse.cpp -o ../../debug/lib/httpserver/HTTPResponse.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from HTTPResponse.cpp:16: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from HTTPResponse.cpp:16: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPServer.cpp -o ../../debug/lib/httpserver/HTTPServer.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from HTTPServer.cpp:17: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from HTTPServer.cpp:17: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c S3Client.cpp -o ../../debug/lib/httpserver/S3Client.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c S3Simulator.cpp -o ../../debug/lib/httpserver/S3Simulator.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c autogen_HTTPException.cpp -o ../../debug/lib/httpserver/autogen_HTTPException.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c cdecode.cpp -o ../../debug/lib/httpserver/cdecode.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c cencode.cpp -o ../../debug/lib/httpserver/cencode.o [INFO ] (echo -n > ../../debug/lib/httpserver/httpserver.a; rm ../../debug/lib/httpserver/httpserver.a) [INFO ] ar cq ../../debug/lib/httpserver/httpserver.a ../../debug/lib/httpserver/HTTPQueryDecoder.o ../../debug/lib/httpserver/HTTPRequest.o ../../debug/lib/httpserver/HTTPResponse.o ../../debug/lib/httpserver/HTTPServer.o ../../debug/lib/httpserver/S3Client.o ../../debug/lib/httpserver/S3Simulator.o ../../debug/lib/httpserver/autogen_HTTPException.o ../../debug/lib/httpserver/cdecode.o ../../debug/lib/httpserver/cencode.o [INFO ] ranlib ../../debug/lib/httpserver/httpserver.a [INFO ] gmake[1]: Leaving directory `lib/httpserver' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/httpserver\"" -c _main.cpp -o ../../debug/test/httpserver/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/httpserver\"" -c testhttpserver.cpp -o ../../debug/test/httpserver/testhttpserver.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from testhttpserver.cpp:27: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testhttpserver.cpp:27: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/httpserver/test ../../debug/test/httpserver/_main.o ../../debug/test/httpserver/testhttpserver.o ../../debug/lib/httpserver/httpserver.a ../../debug/lib/server/server.a ../../debug/lib/common/common.a ../../qdbm/libqdbm.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] Can't locate LWP/UserAgent.pm in @INC (@INC contains: /usr/perl5/5.8.4/lib/i86pc-solaris-64int /usr/perl5/5.8.4/lib /usr/perl5/site_perl/5.8.4/i86pc-solaris-64int /usr/perl5/site_perl/5.8.4 /usr/perl5/site_perl /usr/perl5/vendor_perl/5.8.4/i86pc-solaris-64int /usr/perl5/vendor_perl/5.8.4 /usr/perl5/vendor_perl .) at testfiles/testrequests.pl line 3. [INFO ] BEGIN failed--compilation aborted at testfiles/testrequests.pl line 3. [INFO ] ERROR: **** TEST FAILURE: Condition [::system("perl testfiles/testrequests.pl") == 0] failed at testhttpserver.cpp:154 [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 8745): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 8753): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:154) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: FAILED: Exception caught: RaidFile OSError [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:154) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup Step: tests-release Errors: Executing perl failed (error code 1) Log: [INFO ] ==> Release tests start [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/common\"" -c _main.cpp -o ../../release/test/common/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/common\"" -c testcommon.cpp -o ../../release/test/common/testcommon.o [ERROR ] In file included from ../../lib/common/FdGetLine.h:15, [ERROR ] from testcommon.cpp:18: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testcommon.cpp:18: [ERROR ] ../../lib/common/FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testcommon.cpp:22: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/common/test ../../release/test/common/_main.o ../../release/test/common/testcommon.o ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: **** TEST FAILURE: Condition [t1.HasExpired()] failed at testcommon.cpp:346 [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: [ ] imbalance or syntax error [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] FAILED: 1 tests failed (first at testcommon.cpp:346) [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/crypto\"" -c _main.cpp -o ../../release/test/crypto/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/crypto\"" -c testcrypto.cpp -o ../../release/test/crypto/testcrypto.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/crypto/test ../../release/test/crypto/_main.o ../../release/test/crypto/testcrypto.o ../../release/lib/crypto/crypto.a ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/crypto/testfiles [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/compress -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/compress\"" -c _main.cpp -o ../../release/test/compress/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/compress -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/compress\"" -c testcompress.cpp -o ../../release/test/compress/testcompress.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/compress/test ../../release/test/compress/_main.o ../../release/test/compress/testcompress.o ../../release/lib/compress/compress.a ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/compress/testfiles [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/intercept; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/intercept/intercept.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/intercept/intercept.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/intercept' [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2955\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/intercept\"" -c intercept.cpp -o ../../release/lib/intercept/intercept.o [INFO ] (echo -n > ../../release/lib/intercept/intercept.a; rm ../../release/lib/intercept/intercept.a) [INFO ] ar cq ../../release/lib/intercept/intercept.a ../../release/lib/intercept/intercept.o [INFO ] ranlib ../../release/lib/intercept/intercept.a [INFO ] gmake[1]: Leaving directory `lib/intercept' [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/raidfile\"" -c _main.cpp -o ../../release/test/raidfile/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/raidfile\"" -c testraidfile.cpp -o ../../release/test/raidfile/testraidfile.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/raidfile/test ../../release/test/raidfile/_main.o ../../release/test/raidfile/testraidfile.o ../../release/lib/raidfile/raidfile.a ../../release/lib/intercept/intercept.a ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 1024) == 1024] failed at testraidfile.cpp:733 [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 512) == 512] failed at testraidfile.cpp:738 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) (Failed to read parity RaidFile: testfiles/0_2/testdd.rf: No such file or directory (2)) at RaidFileRead.cpp(1274) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] FAILED: Exception caught: RaidFile OSError (Error when accessing an underlying file. Check file permissions allow files to be read and written in the configured raid directories.) [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/basicserver\"" -c TestCommands.cpp -o ../../release/test/basicserver/TestCommands.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/basicserver\"" -c TestContext.cpp -o ../../release/test/basicserver/TestContext.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/basicserver\"" -c _main.cpp -o ../../release/test/basicserver/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/basicserver\"" -c autogen_TestProtocolClient.cpp -o ../../release/test/basicserver/autogen_TestProtocolClient.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/basicserver\"" -c autogen_TestProtocolServer.cpp -o ../../release/test/basicserver/autogen_TestProtocolServer.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/basicserver\"" -c testbasicserver.cpp -o ../../release/test/basicserver/testbasicserver.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from testbasicserver.cpp:24: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testbasicserver.cpp:24: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/basicserver/test ../../release/test/basicserver/TestCommands.o ../../release/test/basicserver/TestContext.o ../../release/test/basicserver/_main.o ../../release/test/basicserver/autogen_TestProtocolClient.o ../../release/test/basicserver/autogen_TestProtocolServer.o ../../release/test/basicserver/testbasicserver.o ../../release/lib/server/server.a ../../release/lib/common/common.a ../../qdbm/libqdbm.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11049): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11053): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 11060): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 11067): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupstore\"" -c _main.cpp -o ../../release/test/backupstore/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupstore\"" -c testbackupstore.cpp -o ../../release/test/backupstore/testbackupstore.o [ERROR ] testbackupstore.cpp: In function `void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: long long unsigned int format, int64_t arg (arg 2) [ERROR ] testbackupstore.cpp: In function `void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function `int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: long long unsigned int format, int64_t arg (arg 3) [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/backupstore/test ../../release/test/backupstore/../../bin/bbstored/HousekeepStoreAccount.o ../../release/test/backupstore/_main.o ../../release/test/backupstore/testbackupstore.o ../../release/lib/backupclient/backupclient.a ../../release/lib/backupstore/backupstore.a ../../release/lib/server/server.a ../../release/lib/raidfile/raidfile.a ../../release/lib/crypto/crypto.a ../../release/lib/compress/compress.a ../../qdbm/libqdbm.a ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdiWARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] rs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 11133): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 11196): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupctl; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbackupctl/bbackupctl \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbackupctl/bbackupctl \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupd; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbackupd/bbackupd \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbackupd/bbackupd \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupquery; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbackupquery/bbackupquery \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbackupquery/bbackupquery \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupstorefix\"" -c _main.cpp -o ../../release/test/backupstorefix/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupstorefix\"" -c testbackupstorefix.cpp -o ../../release/test/backupstorefix/testbackupstorefix.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/backupstorefix/test ../../release/test/backupstorefix/_main.o ../../release/test/backupstorefix/testbackupstorefix.o ../../release/lib/backupclient/backupclient.a ../../release/lib/backupstore/backupstore.a ../../release/lib/server/server.a ../../release/lib/raidfile/raidfile.a ../../release/lib/crypto/crypto.a ../../release/lib/compress/compress.a ../../qdbm/libqdbm.a ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11285): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x74 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x74 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x16 references object 0x6f which does not exist. [INFO ] WARNING: Directory ID 0x18 has bad structure [INFO ] WARNING: Directory ID 0x18 has wrong size for object 0x75 [INFO ] WARNING: Directory ID 0x1c has wrong container ID. [INFO ] WARNING: Object 0x30 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x31 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x76: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x16 references object 0x6f which does not exist. [INFO ] WARNING: Fixing directory ID 0x16 [INFO ] WARNING: Directory ID 0x18 has bad structure [INFO ] WARNING: Directory ID 0x18 has wrong size for object 0x75 [INFO ] WARNING: Fixing directory ID 0x18 [INFO ] WARNING: Directory ID 0x1c has wrong container ID. [INFO ] WARNING: Object 0x30 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x31 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x76: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o1c found [INFO ] WARNING: Directory ID 0xe references object 0x3b which is already contained. [INFO ] WARNING: Object 0x89 is unattached. [INFO ] WARNING: Missing directory 0x1c could be recreated. [INFO ] WARNING: Object 0x8a is unattached. [INFO ] WARNING: Object 0x8b is unattached. [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o1c found, deleting [INFO ] WARNING: Directory ID 0xe references object 0x3b which is already contained. [INFO ] WARNING: Fixing directory ID 0xe [INFO ] WARNING: Object 0x89 is unattached. [INFO ] WARNING: Recreating missing directory 0x1c [INFO ] WARNING: Object 0x8a is unattached. [INFO ] WARNING: Object 0x8b is unattached. [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o15 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o7e found [INFO ] WARNING: Directory ID 0x1a references object 0x7e which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: Missing directory 0x15 could be recreated. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x69 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o15 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o7e found, deleting [INFO ] WARNING: Directory ID 0x1a references object 0x7e which does not exist. [INFO ] WARNING: Fixing directory ID 0x1a [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: Recreating missing directory 0x15 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x69 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 11278): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupstorepatch\"" -c _main.cpp -o ../../release/test/backupstorepatch/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupstorepatch\"" -c testbackupstorepatch.cpp -o ../../release/test/backupstorepatch/testbackupstorepatch.o [ERROR ] testbackupstorepatch.cpp: In function `int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: long long int format, int64_t arg (arg 2) [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/backupstorepatch/test ../../release/test/backupstorepatch/_main.o ../../release/test/backupstorepatch/testbackupstorepatch.o ../../release/lib/backupclient/backupclient.a ../../release/lib/backupstore/backupstore.a ../../release/lib/server/server.a ../../release/lib/raidfile/raidfile.a ../../release/lib/crypto/crypto.a ../../release/lib/compress/compress.a ../../qdbm/libqdbm.a ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupstorepatch/testfiles [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] ................................ [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] ................................ [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 11445): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupdiff\"" -c _main.cpp -o ../../release/test/backupdiff/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupdiff\"" -c difftestfiles.cpp -o ../../release/test/backupdiff/difftestfiles.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/backupdiff\"" -c testbackupdiff.cpp -o ../../release/test/backupdiff/testbackupdiff.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/backupdiff/test ../../release/test/backupdiff/_main.o ../../release/test/backupdiff/difftestfiles.o ../../release/test/backupdiff/testbackupdiff.o ../../release/lib/backupclient/backupclient.a ../../release/lib/backupstore/backupstore.a ../../release/lib/server/server.a ../../release/lib/raidfile/raidfile.a ../../release/lib/crypto/crypto.a ../../release/lib/compress/compress.a ../../qdbm/libqdbm.a ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupdiff/testfiles [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/intercept; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/intercept/intercept.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/intercept/intercept.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupctl; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbackupctl/bbackupctl \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbackupctl/bbackupctl \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupquery; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbackupquery/bbackupquery \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbackupquery/bbackupquery \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupd; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbackupd/bbackupd \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbackupd/bbackupd \ [INFO ] ) [ERROR ] gmake: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/httpserver; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/httpserver/httpserver.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/httpserver/httpserver.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/httpserver' [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPQueryDecoder.cpp -o ../../release/lib/httpserver/HTTPQueryDecoder.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPRequest.cpp -o ../../release/lib/httpserver/HTTPRequest.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from HTTPRequest.cpp:22: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from HTTPRequest.cpp:22: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPResponse.cpp -o ../../release/lib/httpserver/HTTPResponse.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from HTTPResponse.cpp:16: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from HTTPResponse.cpp:16: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPServer.cpp -o ../../release/lib/httpserver/HTTPServer.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from HTTPServer.cpp:17: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from HTTPServer.cpp:17: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c S3Client.cpp -o ../../release/lib/httpserver/S3Client.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c S3Simulator.cpp -o ../../release/lib/httpserver/S3Simulator.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c autogen_HTTPException.cpp -o ../../release/lib/httpserver/autogen_HTTPException.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c cdecode.cpp -o ../../release/lib/httpserver/cdecode.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"lib/httpserver\"" -c cencode.cpp -o ../../release/lib/httpserver/cencode.o [INFO ] (echo -n > ../../release/lib/httpserver/httpserver.a; rm ../../release/lib/httpserver/httpserver.a) [INFO ] ar cq ../../release/lib/httpserver/httpserver.a ../../release/lib/httpserver/HTTPQueryDecoder.o ../../release/lib/httpserver/HTTPRequest.o ../../release/lib/httpserver/HTTPResponse.o ../../release/lib/httpserver/HTTPServer.o ../../release/lib/httpserver/S3Client.o ../../release/lib/httpserver/S3Simulator.o ../../release/lib/httpserver/autogen_HTTPException.o ../../release/lib/httpserver/cdecode.o ../../release/lib/httpserver/cencode.o [INFO ] ranlib ../../release/lib/httpserver/httpserver.a [INFO ] gmake[1]: Leaving directory `lib/httpserver' [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/httpserver\"" -c _main.cpp -o ../../release/test/httpserver/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2955\"" -DBOX_MODULE="\"test/httpserver\"" -c testhttpserver.cpp -o ../../release/test/httpserver/testhttpserver.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from testhttpserver.cpp:27: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testhttpserver.cpp:27: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/httpserver/test ../../release/test/httpserver/_main.o ../../release/test/httpserver/testhttpserver.o ../../release/lib/httpserver/httpserver.a ../../release/lib/server/server.a ../../release/lib/common/common.a ../../qdbm/libqdbm.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] Can't locate LWP/UserAgent.pm in @INC (@INC contains: /usr/perl5/5.8.4/lib/i86pc-solaris-64int /usr/perl5/5.8.4/lib /usr/perl5/site_perl/5.8.4/i86pc-solaris-64int /usr/perl5/site_perl/5.8.4 /usr/perl5/site_perl /usr/perl5/vendor_perl/5.8.4/i86pc-solaris-64int /usr/perl5/vendor_perl/5.8.4 /usr/perl5/vendor_perl .) at testfiles/testrequests.pl line 3. [INFO ] BEGIN failed--compilation aborted at testfiles/testrequests.pl line 3. [INFO ] ERROR: **** TEST FAILURE: Condition [::system("perl testfiles/testrequests.pl") == 0] failed at testhttpserver.cpp:154 [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11647): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11655): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:154) [INFO ] -------- [INFO ] common: FAILED: 1 tests failed (first at testcommon.cpp:346) [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: FAILED: Exception caught: RaidFile OSError (Error when accessing an underlying file. Check file permissions allow files to be read and written in the configured raid directories.) [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:154) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] (cd bin/bbstored; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] mkdir -p parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] (cd bin/bbstoreaccounts; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] mkdir -p parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbstored.8 docbook/bb-man.xsl docbook/bbstored.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [ERROR ] Note: Writing bbstored.8 [INFO ] gzip man/bbstored.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstoreaccounts.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbstoreaccounts.8 docbook/bb-man.xsl docbook/bbstoreaccounts.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [ERROR ] Note: Writing bbstoreaccounts.8 [INFO ] gzip man/bbstoreaccounts.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored-certs.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbstored-certs.8 docbook/bb-man.xsl docbook/bbstored-certs.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [ERROR ] Note: Writing bbstored-certs.8 [INFO ] gzip man/bbstored-certs.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored-config.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbstored-config.8 docbook/bb-man.xsl docbook/bbstored-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [ERROR ] Note: Writing bbstored-config.8 [INFO ] gzip man/bbstored-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] make -C docs man/raidfile-config.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/raidfile-config.8 docbook/bb-man.xsl docbook/raidfile-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [ERROR ] Note: Writing raidfile-config.8 [INFO ] gzip man/raidfile-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] make -C docs man/bbstored.conf.5.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbstored.conf.5 docbook/bb-man.xsl docbook/bbstored.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [ERROR ] Note: Writing bbstored.conf.5 [INFO ] gzip man/bbstored.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] make -C docs man/raidfile.conf.5.gz [INFO ] make xslt [INFO ] xsltproc -o man/raidfile.conf.5 docbook/bb-man.xsl docbook/raidfile.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [ERROR ] Note: Writing raidfile.conf.5 [INFO ] gzip man/raidfile.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 || mkdir parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2502-backup-server-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2502-backup-server-freebsd7.2 | gzip -9 - > boxbackup-trunk_2502-backup-server-freebsd7.2.tgz ) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13374): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 13377): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 13383): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 13390): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:412: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../release/test/bbackupd/test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13842): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 13849): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 14:42:35 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 13:42:35 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2955] Trunk Message-ID: <20110502134235.88773E796A@www.boxbackup.org> Failed build of Box Backup [2955] --------------------------------------------------------------------- Changeset: 2955 - Committed by: jamesog Build Configuration: Trunk Build Platform: Debian 4.0 amd64 Build Slave: wildfire Build Number: 1746 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [CXX] CompressStream.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 10094): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 10097): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 10103): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 10110): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [INFO ] [CXX] bbstored.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x2080870 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 10347): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 10395): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 10555): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x39 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x39 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 10548): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 10675): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 11 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 10885): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 10892): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-linux-gnu [INFO ] checking host system type... x86_64-unknown-linux-gnu [INFO ] checking target system type... x86_64-unknown-linux-gnu [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /bin/grep [INFO ] checking for egrep... /bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... -ledit [INFO ] checking editline/readline.h usability... yes [INFO ] checking editline/readline.h presence... yes [INFO ] checking for editline/readline.h... yes [INFO ] checking whether editline supports history... yes [INFO ] checking for editline/readline.h... (cached) yes [INFO ] checking for db.h... 4.4.20 [INFO ] checking for library containing Berkeley DB 4.4.20... -ldb [INFO ] configure: using Berkeley DB version 4.4.20 [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... yes [INFO ] checking execinfo.h presence... yes [INFO ] checking for execinfo.h... yes [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... yes [INFO ] checking sys/xattr.h presence... yes [INFO ] checking for sys/xattr.h... yes [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... yes [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... no [INFO ] checking for struct stat.st_mtimespec... no [INFO ] checking for struct stat.st_atim.tv_nsec... yes [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... no [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... no [INFO ] checking whether INFTIM is declared... no [INFO ] checking whether SO_PEERCRED is declared... yes [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... no [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... no [INFO ] checking sys/endian.h presence... no [INFO ] checking for sys/endian.h... no [INFO ] checking asm/byteorder.h usability... yes [INFO ] checking asm/byteorder.h presence... yes [INFO ] checking for asm/byteorder.h... yes [INFO ] checking for __cpu_to_be64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... yes [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... yes [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... no [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... yes [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... yes [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... yes [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... no [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... no [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... no [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... yes [INFO ] checking for llistxattr... yes [INFO ] checking for getxattr... yes [INFO ] checking for lgetxattr... yes [INFO ] checking for setxattr... yes [INFO ] checking for lsetxattr... yes [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... no [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'Linux'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Generating Compress exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating HTTP exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: yes [INFO ] Readline: yes [INFO ] Extended attributes: yes [INFO ] (cd bin/bbackupd; make -D RELEASE) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [ERROR ] Timer.cpp: In static member function 'static void Timers::Cleanup()': [ERROR ] Timer.cpp:86: warning: unused variable 'result' [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] mkdir -p parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupquery; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] mkdir -p parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupctl; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] mkdir -p parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupd.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbackupd.8 docbook/bb-man.xsl docbook/bbackupd.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd [ERROR ] Note: Writing bbackupd.8 [INFO ] gzip man/bbackupd.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupd.8.gz parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupquery.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbackupquery.8 docbook/bb-man.xsl docbook/bbackupquery.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupquery [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupquery [ERROR ] Note: Writing bbackupquery.8 [INFO ] gzip man/bbackupquery.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupquery.8.gz parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupctl.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbackupctl.8 docbook/bb-man.xsl docbook/bbackupctl.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupctl [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupctl [ERROR ] Note: Writing bbackupctl.8 [INFO ] gzip man/bbackupctl.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupctl.8.gz parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupd-config.8.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbackupd-config.8 docbook/bb-man.xsl docbook/bbackupd-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd-config [ERROR ] Note: Writing bbackupd-config.8 [INFO ] gzip man/bbackupd-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupd-config.8.gz parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupd.conf.5.gz [INFO ] make xslt [INFO ] xsltproc -o man/bbackupd.conf.5 docbook/bb-man.xsl docbook/bbackupd.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd.conf [ERROR ] Note: Writing bbackupd.conf.5 [INFO ] gzip man/bbackupd.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupd.conf.5.gz parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 || mkdir parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-client parcels/boxbackup-trunk_2504-backup-client-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2504-backup-client-freebsd7.2 | gzip -9 - > boxbackup-trunk_2504-backup-client-freebsd7.2.tgz ) Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13680): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13683): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 13689): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 13704): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 13808): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 13861): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13963): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x51 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x51 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o09 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o09 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 13958): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 14086): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 14297): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 14304): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 1538): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 1541): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 1549): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 1558): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:262: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:467: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:582: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x1fa26f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:412: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 11 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../debug/test/bbackupd/test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 2233): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 2240): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcommon [ERROR ] testcommon.cpp: In function 'int test(int, const char**)': [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(90) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 32405): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 32412): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 32419): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 32427): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:436: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)': [ERROR ] testbackupstore.cpp:488: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 32497): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 32573): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: ...............ERROR: **** TEST FAILURE: Server didn't save PID file at Test.cpp:291 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] timed out! [INFO ] FAILED: 2 tests failed (first at Test.cpp:291) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:411: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 32757): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/lib/intercept/intercept.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [ERROR ] testbbackupd.cpp: In function 'int test_bbackupd()': [ERROR ] testbbackupd.cpp:892: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:914: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:990: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:1056: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:1146: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:1315: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:1477: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:1611: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:1806: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2545: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2595: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2658: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2672: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2758: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2772: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2815: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2844: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2877: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2910: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2943: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2945: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2966: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3002: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3027: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3049: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3088: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3273: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3378: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3580: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3600: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3628: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3672: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3741: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3758: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3991: warning: deprecated conversion from string constant to 'char*' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4049 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:392 [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 33045): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] Starting server: ./test s3server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 33059): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:392) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:291) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:392) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 14:42:39 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 13:42:39 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2955] Trunk Message-ID: <20110502134239.D1DDEE7973@www.boxbackup.org> Failed build of Box Backup [2955] --------------------------------------------------------------------- Changeset: 2955 - Committed by: jamesog Build Configuration: Trunk Build Platform: CentOS 5 x86_64 Build Slave: centos-vbox Build Number: 1745 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 9057): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 9060): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 9066): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 9074): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] BackupStoreDaemon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x569c7f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 9312): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 9358): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 9514): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 9509): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 9640): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 5 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPResponse.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPServer.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 9846): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 9853): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [ERROR ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [ERROR ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [ERROR ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [ERROR ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [ERROR ] testcommon.cpp: In function 'int test(int, const char**)': [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(116) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(133) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (!spTimers) at Timer.cpp(43) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(90) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 91199): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 91203): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 91211): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 91222): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [ERROR ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:436: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)': [ERROR ] testbackupstore.cpp:488: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8013030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 91473): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 91564): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:411: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 91798): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 4 seconds [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/lib/intercept/intercept.a' is up to date. [INFO ] `../../debug/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../debug/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] `../../debug/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [ERROR ] testbbackupd.cpp: In function 'int test_bbackupd()': [ERROR ] testbbackupd.cpp:892: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:914: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:990: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:1056: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:1146: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:1315: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:1477: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:1611: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:1806: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2545: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2595: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2658: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2672: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2758: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2772: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2815: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2844: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2877: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2910: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2943: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2945: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:2966: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3002: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3027: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3049: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3088: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3273: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3378: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3580: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3600: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3628: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3672: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3741: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3758: warning: deprecated conversion from string constant to 'char*' [ERROR ] testbbackupd.cpp:3991: warning: deprecated conversion from string constant to 'char*' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4049 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:187 [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 92047): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 92056): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 31448): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 31451): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 31459): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 31466): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:412: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../release/test/bbackupd/test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 31918): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 31925): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 12633): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 12636): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 12642): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 12648): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 12714): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 12760): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 12847): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x231 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x231 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 282 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 282 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o16 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o16 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/o07 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/o07 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 12842): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 12973): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPResponse.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPServer.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13179): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13186): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] (cd bin/bbackupd; make -D RELEASE) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [ERROR ] Timer.cpp: In static member function 'static void Timers::Cleanup()': [ERROR ] Timer.cpp:86: warning: unused variable 'result' [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] Daemon [ERROR ] Daemon.cpp: In member function 'virtual bool Daemon::Configure(const std::string&)': [ERROR ] Daemon.cpp:379: error: 'FileExists' was not declared in this scope [INFO ] *** Error code 1 [INFO ] Stop in lib/server. [INFO ] *** Error code 1 [INFO ] Stop. [INFO ] *** Error code 1 [INFO ] Stop in . [INFO ] U . [INFO ] Checked out revision 2497. -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 14:55:01 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 13:55:01 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2956] Trunk Message-ID: <20110502135501.BD88018CF8C@www.boxbackup.org> Failed build of Box Backup [2956] --------------------------------------------------------------------- Changeset: 2956 - Committed by: jamesog Build Configuration: Trunk Build Platform: Mac OS X 10.6 Build Slave: jmac Build Number: 1756 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] [RANLIB] win32 [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/win32/win32.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [INFO ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [INFO ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [INFO ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [INFO ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 3.6561e-05 secs late [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] /usr/bin/ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [RANLIB] server [INFO ] ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 34474): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 34477): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 34483): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 34489): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [INFO ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 34818): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 34864): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] bbackupquery [INFO ] [CXX] CommandCompletion [INFO ] [CXX] BackupQueries [INFO ] BackupQueries.cpp: In member function ?void BackupQueries::List(int64_t, const std::string&, const bool*, bool)?: [INFO ] BackupQueries.cpp:437: warning: format not a string literal and no format arguments [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 35059): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 35054): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 35183): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 19 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 35424): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 35431): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] U . [INFO ] Checked out revision 2494. [ERROR ] configure.ac:245: error: possibly undefined macro: AC_LANG_PROGRAM [ERROR ] If this token and others are legitimate, please use m4_pattern_allow. [ERROR ] See the Autoconf documentation. Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 3.9277e-05 secs late [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../release/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 38215): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 38218): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 38224): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 38230): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 38310): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 38357): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 38448): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 8 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o17 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o17 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 38443): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 38571): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 14 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 38825): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 38832): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking if non-aligned 16 bit word accesses fail... no [INFO ] checking if non-aligned 32 bit word accesses fail... no [INFO ] checking if non-aligned 64 bit word accesses fail... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 14:55:33 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 13:55:33 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2956] Trunk Message-ID: <20110502135533.D69CE18B099@www.boxbackup.org> Failed build of Box Backup [2956] --------------------------------------------------------------------- Changeset: 2956 - Committed by: jamesog Build Configuration: Trunk Build Platform: FreeBSD 8.0 amd64 Build Slave: www Build Number: 1754 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] Configuration.cpp: In member function 'bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [INFO ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] [CXX] DebugPrintf [INFO ] [CXX] ExcludeList [INFO ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [INFO ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [INFO ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [INFO ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] autogen_RaidFileException [INFO ] [CXX] RaidFileWrite [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 69010): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 69013): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 69020): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 69028): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [INFO ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [INFO ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] bbstored [INFO ] [CXX] HousekeepStoreAccount [INFO ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8014030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 69248): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 69315): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 69455): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: Object 0x36 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: Object 0x36 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x19 has wrong container ID. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Missing directory 0x14 could be recreated. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x19 has wrong container ID. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Recreating missing directory 0x14 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/02/01/o01 found [INFO ] WARNING: Directory ID 0xf references object 0x48 which is already contained. [INFO ] WARNING: Object 0x87 is unattached. [INFO ] WARNING: Missing directory 0x19 could be recreated. [INFO ] WARNING: Object 0x88 is unattached. [INFO ] WARNING: Object 0x89 is unattached. [INFO ] WARNING: Object 0x8a is unattached. [INFO ] WARNING: Object 0x8b is unattached. [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/02/01/o01 found, deleting [INFO ] WARNING: Directory ID 0xf references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xf [INFO ] WARNING: Object 0x87 is unattached. [INFO ] WARNING: Recreating missing directory 0x19 [INFO ] WARNING: Object 0x88 is unattached. [INFO ] WARNING: Object 0x89 is unattached. [INFO ] WARNING: Object 0x8a is unattached. [INFO ] WARNING: Object 0x8b is unattached. [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x1c is unattached. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x1c is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/03/01/o01 found [INFO ] WARNING: Directory ID 0x17 references object 0x7d which does not exist. [INFO ] WARNING: Directory ID 0x1c has wrong container ID. [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/03/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x17 references object 0x7d which does not exist. [INFO ] WARNING: Fixing directory ID 0x17 [INFO ] WARNING: Directory ID 0x1c has wrong container ID. [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 69450): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 69573): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] S3Client [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPRequest [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Connection reset by peer (54) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 69755): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 69763): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking if non-aligned 16 bit word accesses fail... no [INFO ] checking if non-aligned 32 bit word accesses fail... no [INFO ] checking if non-aligned 64 bit word accesses fail... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no [INFO ] (cd bin/bbackupd; make -D RELEASE) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [ERROR ] Timer.cpp: In static member function 'static void Timers::Cleanup()': [ERROR ] Timer.cpp:86: warning: unused variable 'result' [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] mkdir -p parcels/boxbackup-trunk_2482-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2482-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupquery; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] mkdir -p parcels/boxbackup-trunk_2482-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2482-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupctl; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] mkdir -p parcels/boxbackup-trunk_2482-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2482-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2482-backup-client-freebsd7.2 [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2482-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2482-backup-client-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2482-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupd.8.gz [INFO ] xsltproc -o man/bbackupd.8 docbook/bb-man.xsl docbook/bbackupd.xml [ERROR ] warning: failed to load external entity "docbook/bb-man.xsl" [ERROR ] cannot parse docbook/bb-man.xsl [INFO ] *** Error code 4 [INFO ] Stop in docs. [INFO ] *** Error code 1 [INFO ] Stop in . Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 72487): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 72490): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 72497): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 72505): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 72559): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 72625): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 72698): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x41 is unattached. [INFO ] WARNING: Object 0x41 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x41 is unattached. [INFO ] WARNING: Object 0x41 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x7 references object 0x39 which does not exist. [INFO ] WARNING: Directory ID 0x9 has bad structure [INFO ] WARNING: Directory ID 0x9 has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0xc has wrong container ID. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Missing directory 0x1c could be recreated. [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x7 references object 0x39 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x9 has bad structure [INFO ] WARNING: Directory ID 0x9 has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0x9 [INFO ] WARNING: Directory ID 0xc has wrong container ID. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Recreating missing directory 0x1c [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o0c found [INFO ] WARNING: Directory ID 0x16 references object 0x5e which is already contained. [INFO ] WARNING: Object 0x51 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x52 is unattached. [INFO ] WARNING: Object 0x53 is unattached. [INFO ] WARNING: Object 0x54 is unattached. [INFO ] WARNING: Object 0x55 is unattached. [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o0c found, deleting [INFO ] WARNING: Directory ID 0x16 references object 0x5e which is already contained. [INFO ] WARNING: Fixing directory ID 0x16 [INFO ] WARNING: Object 0x51 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x52 is unattached. [INFO ] WARNING: Object 0x53 is unattached. [INFO ] WARNING: Object 0x54 is unattached. [INFO ] WARNING: Object 0x55 is unattached. [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x10 is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x10 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o06 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o50 found [INFO ] WARNING: Directory ID 0xb references object 0x50 which does not exist. [INFO ] WARNING: Directory ID 0x10 has wrong container ID. [INFO ] WARNING: File ID 0x5c has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x6 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o06 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o50 found, deleting [INFO ] WARNING: Directory ID 0xb references object 0x50 which does not exist. [INFO ] WARNING: Fixing directory ID 0xb [INFO ] WARNING: Directory ID 0x10 has wrong container ID. [INFO ] WARNING: File ID 0x5c has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x6 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x5c has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x5c has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 72693): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 72823): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] S3Client [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPRequest [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 73035): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 73045): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] (cd bin/bbackupd; make -D RELEASE) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [ERROR ] Timer.cpp: In static member function 'static void Timers::Cleanup()': [ERROR ] Timer.cpp:86: warning: unused variable 'result' [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] mkdir -p parcels/boxbackup-trunk_2478-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2478-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupquery; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] mkdir -p parcels/boxbackup-trunk_2478-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2478-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupctl; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] mkdir -p parcels/boxbackup-trunk_2478-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2478-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2478-backup-client-freebsd7.2 [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2478-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2478-backup-client-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2478-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupd.8.gz [INFO ] xsltproc -o man/bbackupd.8 docbook/bb-man.xsl docbook/bbackupd.xml [ERROR ] warning: failed to load external entity "docbook/bb-man.xsl" [ERROR ] cannot parse docbook/bb-man.xsl [INFO ] *** Error code 4 [INFO ] Stop in docs. [INFO ] *** Error code 1 [INFO ] Stop in . [INFO ] U . [INFO ] Checked out revision 2477. -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 15:00:12 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 14:00:12 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2956] Trunk Message-ID: <20110502140012.1328918B0B9@www.boxbackup.org> Failed build of Box Backup [2956] --------------------------------------------------------------------- Changeset: 2956 - Committed by: jamesog Build Configuration: Trunk Build Platform: Solaris 10 x86 Build Slave: solaris-vbox Build Number: 1757 - Failures: Step: tests-debug Errors: Executing perl failed (error code 1) Log: [INFO ] ==> Debug tests start [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/win32' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/win32\"" -c emu.cpp -o ../../debug/lib/win32/emu.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/win32\"" -c getopt_long.cpp -o ../../debug/lib/win32/getopt_long.o [INFO ] (echo -n > ../../debug/lib/win32/win32.a; rm ../../debug/lib/win32/win32.a) [INFO ] ar cq ../../debug/lib/win32/win32.a ../../debug/lib/win32/emu.o ../../debug/lib/win32/getopt_long.o [INFO ] ranlib ../../debug/lib/win32/win32.a [INFO ] gmake[1]: Leaving directory `lib/win32' [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/common' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c BoxException.cpp -o ../../debug/lib/common/BoxException.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c BoxTime.cpp -o ../../debug/lib/common/BoxTime.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c BoxTimeToText.cpp -o ../../debug/lib/common/BoxTimeToText.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c BufferedStream.cpp -o ../../debug/lib/common/BufferedStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c BufferedWriteStream.cpp -o ../../debug/lib/common/BufferedWriteStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c CollectInBufferStream.cpp -o ../../debug/lib/common/CollectInBufferStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c Configuration.cpp -o ../../debug/lib/common/Configuration.o [ERROR ] In file included from FdGetLine.h:15, [ERROR ] from Configuration.cpp:21: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from Configuration.cpp:21: [ERROR ] FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [ERROR ] Configuration.cpp: In member function `bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [ERROR ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c ConversionString.cpp -o ../../debug/lib/common/ConversionString.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c DebugAssertFailed.cpp -o ../../debug/lib/common/DebugAssertFailed.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c DebugMemLeakFinder.cpp -o ../../debug/lib/common/DebugMemLeakFinder.o [ERROR ] DebugMemLeakFinder.cpp: In function `int memleakfinder_numleaks()': [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c DebugPrintf.cpp -o ../../debug/lib/common/DebugPrintf.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c EventWatchFilesystemObject.cpp -o ../../debug/lib/common/EventWatchFilesystemObject.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c ExcludeList.cpp -o ../../debug/lib/common/ExcludeList.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c FdGetLine.cpp -o ../../debug/lib/common/FdGetLine.o [ERROR ] In file included from FdGetLine.h:15, [ERROR ] from FdGetLine.cpp:18: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from FdGetLine.cpp:18: [ERROR ] FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c FileModificationTime.cpp -o ../../debug/lib/common/FileModificationTime.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c FileStream.cpp -o ../../debug/lib/common/FileStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c GetLine.cpp -o ../../debug/lib/common/GetLine.o [ERROR ] In file included from GetLine.cpp:18: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c IOStream.cpp -o ../../debug/lib/common/IOStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c IOStreamGetLine.cpp -o ../../debug/lib/common/IOStreamGetLine.o [ERROR ] In file included from IOStreamGetLine.h:15, [ERROR ] from IOStreamGetLine.cpp:11: [ERROR ] GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from IOStreamGetLine.cpp:11: [ERROR ] IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c InvisibleTempFileStream.cpp -o ../../debug/lib/common/InvisibleTempFileStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c Logging.cpp -o ../../debug/lib/common/Logging.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c MemBlockStream.cpp -o ../../debug/lib/common/MemBlockStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c NamedLock.cpp -o ../../debug/lib/common/NamedLock.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c PartialReadStream.cpp -o ../../debug/lib/common/PartialReadStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c PathUtils.cpp -o ../../debug/lib/common/PathUtils.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c RateLimitingStream.cpp -o ../../debug/lib/common/RateLimitingStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c ReadGatherStream.cpp -o ../../debug/lib/common/ReadGatherStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c ReadLoggingStream.cpp -o ../../debug/lib/common/ReadLoggingStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c StreamableMemBlock.cpp -o ../../debug/lib/common/StreamableMemBlock.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c Test.cpp -o ../../debug/lib/common/Test.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c Timer.cpp -o ../../debug/lib/common/Timer.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c UnixUser.cpp -o ../../debug/lib/common/UnixUser.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c Utils.cpp -o ../../debug/lib/common/Utils.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c WaitForEvent.cpp -o ../../debug/lib/common/WaitForEvent.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c ZeroStream.cpp -o ../../debug/lib/common/ZeroStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c autogen_CommonException.cpp -o ../../debug/lib/common/autogen_CommonException.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/common\"" -c autogen_ConversionException.cpp -o ../../debug/lib/common/autogen_ConversionException.o [INFO ] (echo -n > ../../debug/lib/common/common.a; rm ../../debug/lib/common/common.a) [INFO ] ar cq ../../debug/lib/common/common.a ../../debug/lib/common/BoxException.o ../../debug/lib/common/BoxTime.o ../../debug/lib/common/BoxTimeToText.o ../../debug/lib/common/BufferedStream.o ../../debug/lib/common/BufferedWriteStream.o ../../debug/lib/common/CollectInBufferStream.o ../../debug/lib/common/Configuration.o ../../debug/lib/common/ConversionString.o ../../debug/lib/common/DebugAssertFailed.o ../../debug/lib/common/DebugMemLeakFinder.o ../../debug/lib/common/DebugPrintf.o ../../debug/lib/common/EventWatchFilesystemObject.o ../../debug/lib/common/ExcludeList.o ../../debug/lib/common/FdGetLine.o ../../debug/lib/common/FileModificationTime.o ../../debug/lib/common/FileStream.o ../../debug/lib/common/GetLine.o ../../debug/lib/common/IOStream.o ../../debug/lib/common/IOStreamGetLine.o ../../debug/lib/common/InvisibleTempFileStream.o ../../debug/lib/common/Logging.o ../../debug/lib/common/MemBlockStream.o ../../debug/lib/common/NamedLock.o ../../debug/lib/c ommon/PartialReadStream.o ../../debug/lib/common/PathUtils.o ../../debug/lib/common/RateLimitingStream.o ../../debug/lib/common/ReadGatherStream.o ../../debug/lib/common/ReadLoggingStream.o ../../debug/lib/common/StreamableMemBlock.o ../../debug/lib/common/Test.o ../../debug/lib/common/Timer.o ../../debug/lib/common/UnixUser.o ../../debug/lib/common/Utils.o ../../debug/lib/common/WaitForEvent.o ../../debug/lib/common/ZeroStream.o ../../debug/lib/common/autogen_CommonException.o ../../debug/lib/common/autogen_ConversionException.o [INFO ] ranlib ../../debug/lib/common/common.a [INFO ] gmake[1]: Leaving directory `lib/common' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/common\"" -c _main.cpp -o ../../debug/test/common/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/common\"" -c testcommon.cpp -o ../../debug/test/common/testcommon.o [ERROR ] In file included from ../../lib/common/FdGetLine.h:15, [ERROR ] from testcommon.cpp:18: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testcommon.cpp:18: [ERROR ] ../../lib/common/FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testcommon.cpp:22: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/common/test ../../debug/test/common/_main.o ../../debug/test/common/testcommon.o ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: **** TEST FAILURE: Condition [t1.HasExpired()] failed at testcommon.cpp:346 [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: [ ] imbalance or syntax error [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] FAILED: 1 tests failed (first at testcommon.cpp:346) [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/crypto' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/crypto\"" -c CipherAES.cpp -o ../../debug/lib/crypto/CipherAES.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/crypto\"" -c CipherBlowfish.cpp -o ../../debug/lib/crypto/CipherBlowfish.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/crypto\"" -c CipherContext.cpp -o ../../debug/lib/crypto/CipherContext.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/crypto\"" -c CipherDescription.cpp -o ../../debug/lib/crypto/CipherDescription.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/crypto\"" -c MD5Digest.cpp -o ../../debug/lib/crypto/MD5Digest.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/crypto\"" -c Random.cpp -o ../../debug/lib/crypto/Random.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/crypto\"" -c RollingChecksum.cpp -o ../../debug/lib/crypto/RollingChecksum.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/crypto\"" -c autogen_CipherException.cpp -o ../../debug/lib/crypto/autogen_CipherException.o [INFO ] (echo -n > ../../debug/lib/crypto/crypto.a; rm ../../debug/lib/crypto/crypto.a) [INFO ] ar cq ../../debug/lib/crypto/crypto.a ../../debug/lib/crypto/CipherAES.o ../../debug/lib/crypto/CipherBlowfish.o ../../debug/lib/crypto/CipherContext.o ../../debug/lib/crypto/CipherDescription.o ../../debug/lib/crypto/MD5Digest.o ../../debug/lib/crypto/Random.o ../../debug/lib/crypto/RollingChecksum.o ../../debug/lib/crypto/autogen_CipherException.o [INFO ] ranlib ../../debug/lib/crypto/crypto.a [INFO ] gmake[1]: Leaving directory `lib/crypto' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/crypto\"" -c _main.cpp -o ../../debug/test/crypto/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/crypto\"" -c testcrypto.cpp -o ../../debug/test/crypto/testcrypto.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/crypto/test ../../debug/test/crypto/_main.o ../../debug/test/crypto/testcrypto.o ../../debug/lib/crypto/crypto.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/crypto/testfiles [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/compress' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/compress -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/compress\"" -c CompressStream.cpp -o ../../debug/lib/compress/CompressStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/compress -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/compress\"" -c autogen_CompressException.cpp -o ../../debug/lib/compress/autogen_CompressException.o [INFO ] (echo -n > ../../debug/lib/compress/compress.a; rm ../../debug/lib/compress/compress.a) [INFO ] ar cq ../../debug/lib/compress/compress.a ../../debug/lib/compress/CompressStream.o ../../debug/lib/compress/autogen_CompressException.o [INFO ] ranlib ../../debug/lib/compress/compress.a [INFO ] gmake[1]: Leaving directory `lib/compress' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/compress -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/compress\"" -c _main.cpp -o ../../debug/test/compress/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/compress -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/compress\"" -c testcompress.cpp -o ../../debug/test/compress/testcompress.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/compress/test ../../debug/test/compress/_main.o ../../debug/test/compress/testcompress.o ../../debug/lib/compress/compress.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/compress/testfiles [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/intercept; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/intercept/intercept.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/intercept/intercept.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/intercept' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/intercept\"" -c intercept.cpp -o ../../debug/lib/intercept/intercept.o [INFO ] (echo -n > ../../debug/lib/intercept/intercept.a; rm ../../debug/lib/intercept/intercept.a) [INFO ] ar cq ../../debug/lib/intercept/intercept.a ../../debug/lib/intercept/intercept.o [INFO ] ranlib ../../debug/lib/intercept/intercept.a [INFO ] gmake[1]: Leaving directory `lib/intercept' [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/raidfile' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/raidfile\"" -c RaidFileController.cpp -o ../../debug/lib/raidfile/RaidFileController.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/raidfile\"" -c RaidFileRead.cpp -o ../../debug/lib/raidfile/RaidFileRead.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/raidfile\"" -c RaidFileUtil.cpp -o ../../debug/lib/raidfile/RaidFileUtil.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/raidfile\"" -c RaidFileWrite.cpp -o ../../debug/lib/raidfile/RaidFileWrite.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/raidfile\"" -c autogen_RaidFileException.cpp -o ../../debug/lib/raidfile/autogen_RaidFileException.o [INFO ] (echo -n > ../../debug/lib/raidfile/raidfile.a; rm ../../debug/lib/raidfile/raidfile.a) [INFO ] ar cq ../../debug/lib/raidfile/raidfile.a ../../debug/lib/raidfile/RaidFileController.o ../../debug/lib/raidfile/RaidFileRead.o ../../debug/lib/raidfile/RaidFileUtil.o ../../debug/lib/raidfile/RaidFileWrite.o ../../debug/lib/raidfile/autogen_RaidFileException.o [INFO ] ranlib ../../debug/lib/raidfile/raidfile.a [INFO ] gmake[1]: Leaving directory `lib/raidfile' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/raidfile\"" -c _main.cpp -o ../../debug/test/raidfile/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/raidfile\"" -c testraidfile.cpp -o ../../debug/test/raidfile/testraidfile.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/raidfile/test ../../debug/test/raidfile/_main.o ../../debug/test/raidfile/testraidfile.o ../../debug/lib/raidfile/raidfile.a ../../debug/lib/intercept/intercept.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 1024) == 1024] failed at testraidfile.cpp:733 [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 512) == 512] failed at testraidfile.cpp:738 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) (Failed to read parity RaidFile: testfiles/0_2/testdd.rf: No such file or directory (2)) at RaidFileRead.cpp(1274) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] FAILED: Exception caught: RaidFile OSError [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q NODEPS=1 libqdbm.a \ [INFO ] || gmake NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/server' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/server\"" -c Daemon.cpp -o ../../debug/lib/server/Daemon.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/server\"" -c LocalProcessStream.cpp -o ../../debug/lib/server/LocalProcessStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/server\"" -c Protocol.cpp -o ../../debug/lib/server/Protocol.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/server\"" -c ProtocolObject.cpp -o ../../debug/lib/server/ProtocolObject.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/server\"" -c ProtocolUncertainStream.cpp -o ../../debug/lib/server/ProtocolUncertainStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/server\"" -c SSLLib.cpp -o ../../debug/lib/server/SSLLib.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/server\"" -c ServerControl.cpp -o ../../debug/lib/server/ServerControl.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/server\"" -c Socket.cpp -o ../../debug/lib/server/Socket.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/server\"" -c SocketStream.cpp -o ../../debug/lib/server/SocketStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/server\"" -c SocketStreamTLS.cpp -o ../../debug/lib/server/SocketStreamTLS.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/server\"" -c TLSContext.cpp -o ../../debug/lib/server/TLSContext.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/server\"" -c WinNamedPipeStream.cpp -o ../../debug/lib/server/WinNamedPipeStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/server\"" -c autogen_ConnectionException.cpp -o ../../debug/lib/server/autogen_ConnectionException.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/server\"" -c autogen_ServerException.cpp -o ../../debug/lib/server/autogen_ServerException.o [INFO ] (echo -n > ../../debug/lib/server/server.a; rm ../../debug/lib/server/server.a) [INFO ] ar cq ../../debug/lib/server/server.a ../../debug/lib/server/Daemon.o ../../debug/lib/server/LocalProcessStream.o ../../debug/lib/server/Protocol.o ../../debug/lib/server/ProtocolObject.o ../../debug/lib/server/ProtocolUncertainStream.o ../../debug/lib/server/SSLLib.o ../../debug/lib/server/ServerControl.o ../../debug/lib/server/Socket.o ../../debug/lib/server/SocketStream.o ../../debug/lib/server/SocketStreamTLS.o ../../debug/lib/server/TLSContext.o ../../debug/lib/server/WinNamedPipeStream.o ../../debug/lib/server/autogen_ConnectionException.o ../../debug/lib/server/autogen_ServerException.o [INFO ] ranlib ../../debug/lib/server/server.a [INFO ] gmake[1]: Leaving directory `lib/server' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/basicserver\"" -c TestCommands.cpp -o ../../debug/test/basicserver/TestCommands.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/basicserver\"" -c TestContext.cpp -o ../../debug/test/basicserver/TestContext.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/basicserver\"" -c _main.cpp -o ../../debug/test/basicserver/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/basicserver\"" -c autogen_TestProtocolClient.cpp -o ../../debug/test/basicserver/autogen_TestProtocolClient.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/basicserver\"" -c autogen_TestProtocolServer.cpp -o ../../debug/test/basicserver/autogen_TestProtocolServer.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/basicserver\"" -c testbasicserver.cpp -o ../../debug/test/basicserver/testbasicserver.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from testbasicserver.cpp:24: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testbasicserver.cpp:24: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/basicserver/test ../../debug/test/basicserver/TestCommands.o ../../debug/test/basicserver/TestContext.o ../../debug/test/basicserver/_main.o ../../debug/test/basicserver/autogen_TestProtocolClient.o ../../debug/test/basicserver/autogen_TestProtocolServer.o ../../debug/test/basicserver/testbasicserver.o ../../debug/lib/server/server.a ../../debug/lib/common/common.a ../../qdbm/libqdbm.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20073): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20077): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 20084): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 20091): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q NODEPS=1 libqdbm.a \ [INFO ] || gmake NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/backupstore' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupClientFileAttributes.cpp -o ../../debug/lib/backupstore/BackupClientFileAttributes.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupCommands.cpp -o ../../debug/lib/backupstore/BackupCommands.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreAccountDatabase.cpp -o ../../debug/lib/backupstore/BackupStoreAccountDatabase.o [ERROR ] In file included from ../../lib/common/FdGetLine.h:15, [ERROR ] from BackupStoreAccountDatabase.cpp:20: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupStoreAccountDatabase.cpp:20: [ERROR ] ../../lib/common/FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreAccounts.cpp -o ../../debug/lib/backupstore/BackupStoreAccounts.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreCheck.cpp -o ../../debug/lib/backupstore/BackupStoreCheck.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreCheck2.cpp -o ../../debug/lib/backupstore/BackupStoreCheck2.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreCheckData.cpp -o ../../debug/lib/backupstore/BackupStoreCheckData.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreConfigVerify.cpp -o ../../debug/lib/backupstore/BackupStoreConfigVerify.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreContext.cpp -o ../../debug/lib/backupstore/BackupStoreContext.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreDirectory.cpp -o ../../debug/lib/backupstore/BackupStoreDirectory.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreFile.cpp -o ../../debug/lib/backupstore/BackupStoreFile.o [ERROR ] BackupStoreFile.cpp: In static member function `static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreFileCryptVar.cpp -o ../../debug/lib/backupstore/BackupStoreFileCryptVar.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreFileEncodeStream.cpp -o ../../debug/lib/backupstore/BackupStoreFileEncodeStream.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreFileRevDiff.cpp -o ../../debug/lib/backupstore/BackupStoreFileRevDiff.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreFilename.cpp -o ../../debug/lib/backupstore/BackupStoreFilename.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreFilenameClear.cpp -o ../../debug/lib/backupstore/BackupStoreFilenameClear.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreInfo.cpp -o ../../debug/lib/backupstore/BackupStoreInfo.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c BackupStoreRefCountDatabase.cpp -o ../../debug/lib/backupstore/BackupStoreRefCountDatabase.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c StoreStructure.cpp -o ../../debug/lib/backupstore/StoreStructure.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c autogen_BackupProtocolClient.cpp -o ../../debug/lib/backupstore/autogen_BackupProtocolClient.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c autogen_BackupProtocolServer.cpp -o ../../debug/lib/backupstore/autogen_BackupProtocolServer.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupstore\"" -c autogen_BackupStoreException.cpp -o ../../debug/lib/backupstore/autogen_BackupStoreException.o [INFO ] (echo -n > ../../debug/lib/backupstore/backupstore.a; rm ../../debug/lib/backupstore/backupstore.a) [INFO ] ar cq ../../debug/lib/backupstore/backupstore.a ../../debug/lib/backupstore/BackupClientFileAttributes.o ../../debug/lib/backupstore/BackupCommands.o ../../debug/lib/backupstore/BackupStoreAccountDatabase.o ../../debug/lib/backupstore/BackupStoreAccounts.o ../../debug/lib/backupstore/BackupStoreCheck.o ../../debug/lib/backupstore/BackupStoreCheck2.o ../../debug/lib/backupstore/BackupStoreCheckData.o ../../debug/lib/backupstore/BackupStoreConfigVerify.o ../../debug/lib/backupstore/BackupStoreContext.o ../../debug/lib/backupstore/BackupStoreDirectory.o ../../debug/lib/backupstore/BackupStoreFile.o ../../debug/lib/backupstore/BackupStoreFileCryptVar.o ../../debug/lib/backupstore/BackupStoreFileEncodeStream.o ../../debug/lib/backupstore/BackupStoreFileRevDiff.o ../../debug/lib/backupstore/BackupStoreFilename.o ../../debug/lib/backupstore/BackupStoreFilenameClear.o ../../debug/lib/backupstore/BackupStoreInfo.o ../../debug/lib/backupstore/BackupStoreRefCountDatabas e.o ../../debug/lib/backupstore/StoreStructure.o ../../debug/lib/backupstore/autogen_BackupProtocolClient.o ../../debug/lib/backupstore/autogen_BackupProtocolServer.o ../../debug/lib/backupstore/autogen_BackupStoreException.o [INFO ] ranlib ../../debug/lib/backupstore/backupstore.a [INFO ] gmake[1]: Leaving directory `lib/backupstore' [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/backupclient' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupClientCryptoKeys.cpp -o ../../debug/lib/backupclient/BackupClientCryptoKeys.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupClientMakeExcludeList.cpp -o ../../debug/lib/backupclient/BackupClientMakeExcludeList.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupClientRestore.cpp -o ../../debug/lib/backupclient/BackupClientRestore.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupDaemonConfigVerify.cpp -o ../../debug/lib/backupclient/BackupDaemonConfigVerify.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupStoreFileCmbDiff.cpp -o ../../debug/lib/backupclient/BackupStoreFileCmbDiff.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupStoreFileCmbIdx.cpp -o ../../debug/lib/backupclient/BackupStoreFileCmbIdx.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupStoreFileCombine.cpp -o ../../debug/lib/backupclient/BackupStoreFileCombine.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupStoreFileDiff.cpp -o ../../debug/lib/backupclient/BackupStoreFileDiff.o [ERROR ] BackupStoreFileDiff.cpp: In function `void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [ERROR ] BackupStoreFileDiff.cpp:1033: warning: long long int format, long int arg (arg 3) [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/backupclient\"" -c BackupStoreObjectDump.cpp -o ../../debug/lib/backupclient/BackupStoreObjectDump.o [INFO ] (echo -n > ../../debug/lib/backupclient/backupclient.a; rm ../../debug/lib/backupclient/backupclient.a) [INFO ] ar cq ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupclient/BackupClientCryptoKeys.o ../../debug/lib/backupclient/BackupClientMakeExcludeList.o ../../debug/lib/backupclient/BackupClientRestore.o ../../debug/lib/backupclient/BackupDaemonConfigVerify.o ../../debug/lib/backupclient/BackupStoreFileCmbDiff.o ../../debug/lib/backupclient/BackupStoreFileCmbIdx.o ../../debug/lib/backupclient/BackupStoreFileCombine.o ../../debug/lib/backupclient/BackupStoreFileDiff.o ../../debug/lib/backupclient/BackupStoreObjectDump.o [INFO ] ranlib ../../debug/lib/backupclient/backupclient.a [INFO ] gmake[1]: Leaving directory `lib/backupclient' [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] gmake[1]: Entering directory `bin/bbstoreaccounts' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbstoreaccounts\"" -c bbstoreaccounts.cpp -o ../../debug/bin/bbstoreaccounts/bbstoreaccounts.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -L/usr/local/lib -m64 -o ../../debug/bin/bbstoreaccounts/bbstoreaccounts ../../debug/bin/bbstoreaccounts/bbstoreaccounts.o ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] gmake[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] ) [INFO ] gmake[1]: Entering directory `bin/bbstored' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbstored\"" -c BBStoreDHousekeeping.cpp -o ../../debug/bin/bbstored/BBStoreDHousekeeping.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from BackupStoreDaemon.h:18, [ERROR ] from BBStoreDHousekeeping.cpp:14: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupStoreDaemon.h:18, [ERROR ] from BBStoreDHousekeeping.cpp:14: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbstored\"" -c BackupStoreDaemon.cpp -o ../../debug/bin/bbstored/BackupStoreDaemon.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from BackupStoreDaemon.h:18, [ERROR ] from BackupStoreDaemon.cpp:21: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupStoreDaemon.h:18, [ERROR ] from BackupStoreDaemon.cpp:21: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbstored\"" -c HousekeepStoreAccount.cpp -o ../../debug/bin/bbstored/HousekeepStoreAccount.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from BackupStoreDaemon.h:18, [ERROR ] from HousekeepStoreAccount.cpp:17: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupStoreDaemon.h:18, [ERROR ] from HousekeepStoreAccount.cpp:17: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [ERROR ] HousekeepStoreAccount.cpp: In member function `void HousekeepStoreAccount::DoHousekeeping(bool)': [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function `bool HousekeepStoreAccount::ScanDirectory(int64_t)': [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbstored\"" -c bbstored.cpp -o ../../debug/bin/bbstored/bbstored.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from BackupStoreDaemon.h:18, [ERROR ] from bbstored.cpp:11: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupStoreDaemon.h:18, [ERROR ] from bbstored.cpp:11: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -L/usr/local/lib -m64 -o ../../debug/bin/bbstored/bbstored ../../debug/bin/bbstored/BBStoreDHousekeeping.o ../../debug/bin/bbstored/BackupStoreDaemon.o ../../debug/bin/bbstored/HousekeepStoreAccount.o ../../debug/bin/bbstored/bbstored.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] gmake[1]: Leaving directory `bin/bbstored' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupstore\"" -c _main.cpp -o ../../debug/test/backupstore/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupstore\"" -c testbackupstore.cpp -o ../../debug/test/backupstore/testbackupstore.o [ERROR ] testbackupstore.cpp: In function `void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: long long unsigned int format, int64_t arg (arg 2) [ERROR ] testbackupstore.cpp: In function `void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function `int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: long long unsigned int format, int64_t arg (arg 3) [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/backupstore/test ../../debug/test/backupstore/../../bin/bbstored/HousekeepStoreAccount.o ../../debug/test/backupstore/_main.o ../../debug/test/backupstore/testbackupstore.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Block 0x5f05d0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirsWARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] , depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 20315): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 20378): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q NODEPS=1 libqdbm.a \ [INFO ] || gmake NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupctl; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbackupctl/bbackupctl \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbackupctl/bbackupctl \ [INFO ] ) [INFO ] gmake[1]: Entering directory `bin/bbackupctl' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbackupctl\"" -c bbackupctl.cpp -o ../../debug/bin/bbackupctl/bbackupctl.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from bbackupctl.cpp:26: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from bbackupctl.cpp:26: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -L/usr/local/lib -m64 -o ../../debug/bin/bbackupctl/bbackupctl ../../debug/bin/bbackupctl/bbackupctl.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] gmake[1]: Leaving directory `bin/bbackupctl' [INFO ] ( \ [INFO ] cd ../../bin/bbackupd; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbackupd/bbackupd \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbackupd/bbackupd \ [INFO ] ) [INFO ] gmake[1]: Entering directory `bin/bbackupd' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbackupd\"" -c BackupClientContext.cpp -o ../../debug/bin/bbackupd/BackupClientContext.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbackupd\"" -c BackupClientDeleteList.cpp -o ../../debug/bin/bbackupd/BackupClientDeleteList.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbackupd\"" -c BackupClientDirectoryRecord.cpp -o ../../debug/bin/bbackupd/BackupClientDirectoryRecord.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbackupd\"" -c BackupClientInodeToIDMap.cpp -o ../../debug/bin/bbackupd/BackupClientInodeToIDMap.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbackupd\"" -c BackupDaemon.cpp -o ../../debug/bin/bbackupd/BackupDaemon.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from BackupDaemon.cpp:74: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from BackupDaemon.cpp:74: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbackupd\"" -c Win32BackupService.cpp -o ../../debug/bin/bbackupd/Win32BackupService.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbackupd\"" -c Win32ServiceFunctions.cpp -o ../../debug/bin/bbackupd/Win32ServiceFunctions.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbackupd\"" -c autogen_ClientException.cpp -o ../../debug/bin/bbackupd/autogen_ClientException.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbackupd\"" -c bbackupd.cpp -o ../../debug/bin/bbackupd/bbackupd.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -L/usr/local/lib -m64 -o ../../debug/bin/bbackupd/bbackupd ../../debug/bin/bbackupd/BackupClientContext.o ../../debug/bin/bbackupd/BackupClientDeleteList.o ../../debug/bin/bbackupd/BackupClientDirectoryRecord.o ../../debug/bin/bbackupd/BackupClientInodeToIDMap.o ../../debug/bin/bbackupd/BackupDaemon.o ../../debug/bin/bbackupd/Win32BackupService.o ../../debug/bin/bbackupd/Win32ServiceFunctions.o ../../debug/bin/bbackupd/autogen_ClientException.o ../../debug/bin/bbackupd/bbackupd.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] gmake[1]: Leaving directory `bin/bbackupd' [INFO ] ( \ [INFO ] cd ../../bin/bbackupquery; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbackupquery/bbackupquery \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbackupquery/bbackupquery \ [INFO ] ) [INFO ] gmake[1]: Entering directory `bin/bbackupquery' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbackupquery\"" -c BackupQueries.cpp -o ../../debug/bin/bbackupquery/BackupQueries.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbackupquery\"" -c CommandCompletion.cpp -o ../../debug/bin/bbackupquery/CommandCompletion.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbackupquery\"" -c autogen_Documentation.cpp -o ../../debug/bin/bbackupquery/autogen_Documentation.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"bin/bbackupquery\"" -c bbackupquery.cpp -o ../../debug/bin/bbackupquery/bbackupquery.o [ERROR ] In file included from ../../lib/common/FdGetLine.h:15, [ERROR ] from bbackupquery.cpp:55: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from bbackupquery.cpp:55: [ERROR ] ../../lib/common/FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -L/usr/local/lib -m64 -o ../../debug/bin/bbackupquery/bbackupquery ../../debug/bin/bbackupquery/BackupQueries.o ../../debug/bin/bbackupquery/CommandCompletion.o ../../debug/bin/bbackupquery/autogen_Documentation.o ../../debug/bin/bbackupquery/bbackupquery.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] gmake[1]: Leaving directory `bin/bbackupquery' [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] ) [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupstorefix\"" -c _main.cpp -o ../../debug/test/backupstorefix/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupstorefix\"" -c testbackupstorefix.cpp -o ../../debug/test/backupstorefix/testbackupstorefix.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/backupstorefix/test ../../debug/test/backupstorefix/_main.o ../../debug/test/backupstorefix/testbackupstorefix.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20532): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Object 0x48 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Object 0x48 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 references object 0x41 which does not exist. [INFO ] WARNING: Directory ID 0xb has bad structure [INFO ] WARNING: Directory ID 0xb has wrong size for object 0x4a [INFO ] WARNING: Directory ID 0x11 has wrong container ID. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x4b: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 references object 0x41 which does not exist. [INFO ] WARNING: Fixing directory ID 0x9 [INFO ] WARNING: Directory ID 0xb has bad structure [INFO ] WARNING: Directory ID 0xb has wrong size for object 0x4a [INFO ] WARNING: Fixing directory ID 0xb [INFO ] WARNING: Directory ID 0x11 has wrong container ID. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x4b: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found [INFO ] WARNING: Directory ID 0x1c references object 0x6f which is already contained. [INFO ] WARNING: Object 0x62 is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x63 is unattached. [INFO ] WARNING: Object 0x64 is unattached. [INFO ] WARNING: Object 0x65 is unattached. [INFO ] WARNING: Object 0x66 is unattached. [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x1c references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1c [INFO ] WARNING: Object 0x62 is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x63 is unattached. [INFO ] WARNING: Object 0x64 is unattached. [INFO ] WARNING: Object 0x65 is unattached. [INFO ] WARNING: Object 0x66 is unattached. [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x15 is unattached. [INFO ] WARNING: Object 0x6d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x15 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x6d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/03/o01 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/02/01/o00 found [INFO ] WARNING: Directory ID 0x10 references object 0x60 which does not exist. [INFO ] WARNING: Directory ID 0x15 has wrong container ID. [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Object 0x55 is unattached. [INFO ] WARNING: Missing directory 0xd could be recreated. [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/03/o01 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/02/01/o00 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x60 which does not exist. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Directory ID 0x15 has wrong container ID. [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Object 0x55 is unattached. [INFO ] WARNING: Recreating missing directory 0xd [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 20525): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q NODEPS=1 libqdbm.a \ [INFO ] || gmake NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] ) [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupstorepatch\"" -c _main.cpp -o ../../debug/test/backupstorepatch/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupstorepatch\"" -c testbackupstorepatch.cpp -o ../../debug/test/backupstorepatch/testbackupstorepatch.o [ERROR ] testbackupstorepatch.cpp: In function `int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: long long int format, int64_t arg (arg 2) [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/backupstorepatch/test ../../debug/test/backupstorepatch/_main.o ../../debug/test/backupstorepatch/testbackupstorepatch.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupstorepatch/testfiles [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] ................................ [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] ................................ [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 20692): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q NODEPS=1 libqdbm.a \ [INFO ] || gmake NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupdiff\"" -c _main.cpp -o ../../debug/test/backupdiff/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupdiff\"" -c difftestfiles.cpp -o ../../debug/test/backupdiff/difftestfiles.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupdiff\"" -c testbackupdiff.cpp -o ../../debug/test/backupdiff/testbackupdiff.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/backupdiff/test ../../debug/test/backupdiff/_main.o ../../debug/test/backupdiff/difftestfiles.o ../../debug/test/backupdiff/testbackupdiff.o ../../debug/lib/backupclient/backupclient.a ../../debug/lib/backupstore/backupstore.a ../../debug/lib/server/server.a ../../debug/lib/raidfile/raidfile.a ../../debug/lib/crypto/crypto.a ../../debug/lib/compress/compress.a ../../qdbm/libqdbm.a ../../debug/lib/common/common.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupdiff/testfiles [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 6 seconds [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q NODEPS=1 libqdbm.a \ [INFO ] || gmake NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/intercept; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/intercept/intercept.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/intercept/intercept.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupctl; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbackupctl/bbackupctl \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbackupctl/bbackupctl \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupquery; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbackupquery/bbackupquery \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbackupquery/bbackupquery \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbstored/bbstored \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupd; \ [INFO ] gmake -q NODEPS=1 ../../debug/bin/bbackupd/bbackupd \ [INFO ] || gmake NODEPS=1 ../../debug/bin/bbackupd/bbackupd \ [INFO ] ) [ERROR ] gmake: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q NODEPS=1 libqdbm.a \ [INFO ] || gmake NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/httpserver; \ [INFO ] gmake -q NODEPS=1 ../../debug/lib/httpserver/httpserver.a \ [INFO ] || gmake NODEPS=1 ../../debug/lib/httpserver/httpserver.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/httpserver' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPQueryDecoder.cpp -o ../../debug/lib/httpserver/HTTPQueryDecoder.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPRequest.cpp -o ../../debug/lib/httpserver/HTTPRequest.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from HTTPRequest.cpp:22: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from HTTPRequest.cpp:22: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPResponse.cpp -o ../../debug/lib/httpserver/HTTPResponse.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from HTTPResponse.cpp:16: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from HTTPResponse.cpp:16: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPServer.cpp -o ../../debug/lib/httpserver/HTTPServer.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from HTTPServer.cpp:17: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from HTTPServer.cpp:17: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c S3Client.cpp -o ../../debug/lib/httpserver/S3Client.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c S3Simulator.cpp -o ../../debug/lib/httpserver/S3Simulator.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c autogen_HTTPException.cpp -o ../../debug/lib/httpserver/autogen_HTTPException.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c cdecode.cpp -o ../../debug/lib/httpserver/cdecode.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c cencode.cpp -o ../../debug/lib/httpserver/cencode.o [INFO ] (echo -n > ../../debug/lib/httpserver/httpserver.a; rm ../../debug/lib/httpserver/httpserver.a) [INFO ] ar cq ../../debug/lib/httpserver/httpserver.a ../../debug/lib/httpserver/HTTPQueryDecoder.o ../../debug/lib/httpserver/HTTPRequest.o ../../debug/lib/httpserver/HTTPResponse.o ../../debug/lib/httpserver/HTTPServer.o ../../debug/lib/httpserver/S3Client.o ../../debug/lib/httpserver/S3Simulator.o ../../debug/lib/httpserver/autogen_HTTPException.o ../../debug/lib/httpserver/cdecode.o ../../debug/lib/httpserver/cencode.o [INFO ] ranlib ../../debug/lib/httpserver/httpserver.a [INFO ] gmake[1]: Leaving directory `lib/httpserver' [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/httpserver\"" -c _main.cpp -o ../../debug/test/httpserver/_main.o [INFO ] g++ -I/usr/local/include -g -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/httpserver\"" -c testhttpserver.cpp -o ../../debug/test/httpserver/testhttpserver.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from testhttpserver.cpp:27: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testhttpserver.cpp:27: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../debug/test/httpserver/test ../../debug/test/httpserver/_main.o ../../debug/test/httpserver/testhttpserver.o ../../debug/lib/httpserver/httpserver.a ../../debug/lib/server/server.a ../../debug/lib/common/common.a ../../qdbm/libqdbm.a ../../debug/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] Can't locate LWP/UserAgent.pm in @INC (@INC contains: /usr/perl5/5.8.4/lib/i86pc-solaris-64int /usr/perl5/5.8.4/lib /usr/perl5/site_perl/5.8.4/i86pc-solaris-64int /usr/perl5/site_perl/5.8.4 /usr/perl5/site_perl /usr/perl5/vendor_perl/5.8.4/i86pc-solaris-64int /usr/perl5/vendor_perl/5.8.4 /usr/perl5/vendor_perl .) at testfiles/testrequests.pl line 3. [INFO ] BEGIN failed--compilation aborted at testfiles/testrequests.pl line 3. [INFO ] ERROR: **** TEST FAILURE: Condition [::system("perl testfiles/testrequests.pl") == 0] failed at testhttpserver.cpp:154 [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20894): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20902): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:154) [INFO ] -------- [INFO ] common: FAILED: 1 tests failed (first at testcommon.cpp:346) [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: FAILED: Exception caught: RaidFile OSError [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:154) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] (cd bin/bbackupd; make -D RELEASE) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [ERROR ] Timer.cpp: In static member function 'static void Timers::Cleanup()': [ERROR ] Timer.cpp:86: warning: unused variable 'result' [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] mkdir -p parcels/boxbackup-trunk_2481-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2481-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupquery; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] mkdir -p parcels/boxbackup-trunk_2481-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2481-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupctl; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] mkdir -p parcels/boxbackup-trunk_2481-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2481-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2481-backup-client-freebsd7.2 [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2481-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2481-backup-client-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2481-backup-client-freebsd7.2 [INFO ] make -C docs man/bbackupd.8.gz [INFO ] xsltproc -o man/bbackupd.8 docbook/bb-man.xsl docbook/bbackupd.xml [ERROR ] warning: failed to load external entity "docbook/bb-man.xsl" [ERROR ] cannot parse docbook/bb-man.xsl [INFO ] *** Error code 4 [INFO ] Stop in docs. [INFO ] *** Error code 1 [INFO ] Stop in . [INFO ] U . [INFO ] Checked out revision 2480. Step: tests-release Errors: Executing perl failed (error code 1) Log: [INFO ] ==> Release tests start [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/common\"" -c _main.cpp -o ../../release/test/common/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/common\"" -c testcommon.cpp -o ../../release/test/common/testcommon.o [ERROR ] In file included from ../../lib/common/FdGetLine.h:15, [ERROR ] from testcommon.cpp:18: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testcommon.cpp:18: [ERROR ] ../../lib/common/FdGetLine.h:26: warning: `class FdGetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testcommon.cpp:22: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/common/test ../../release/test/common/_main.o ../../release/test/common/testcommon.o ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: **** TEST FAILURE: Condition [t1.HasExpired()] failed at testcommon.cpp:346 [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: [ ] imbalance or syntax error [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] FAILED: 1 tests failed (first at testcommon.cpp:346) [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/crypto\"" -c _main.cpp -o ../../release/test/crypto/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/crypto -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/crypto\"" -c testcrypto.cpp -o ../../release/test/crypto/testcrypto.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/crypto/test ../../release/test/crypto/_main.o ../../release/test/crypto/testcrypto.o ../../release/lib/crypto/crypto.a ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/crypto/testfiles [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/compress -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/compress\"" -c _main.cpp -o ../../release/test/compress/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/compress -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/compress\"" -c testcompress.cpp -o ../../release/test/compress/testcompress.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/compress/test ../../release/test/compress/_main.o ../../release/test/compress/testcompress.o ../../release/lib/compress/compress.a ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/compress/testfiles [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/intercept; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/intercept/intercept.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/intercept/intercept.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/intercept' [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2956\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/intercept\"" -c intercept.cpp -o ../../release/lib/intercept/intercept.o [INFO ] (echo -n > ../../release/lib/intercept/intercept.a; rm ../../release/lib/intercept/intercept.a) [INFO ] ar cq ../../release/lib/intercept/intercept.a ../../release/lib/intercept/intercept.o [INFO ] ranlib ../../release/lib/intercept/intercept.a [INFO ] gmake[1]: Leaving directory `lib/intercept' [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/raidfile\"" -c _main.cpp -o ../../release/test/raidfile/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../lib/intercept -I../../lib/raidfile -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/raidfile\"" -c testraidfile.cpp -o ../../release/test/raidfile/testraidfile.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/raidfile/test ../../release/test/raidfile/_main.o ../../release/test/raidfile/testraidfile.o ../../release/lib/raidfile/raidfile.a ../../release/lib/intercept/intercept.a ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 1024) == 1024] failed at testraidfile.cpp:733 [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 512) == 512] failed at testraidfile.cpp:738 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) (Failed to read parity RaidFile: testfiles/0_2/testdd.rf: No such file or directory (2)) at RaidFileRead.cpp(1274) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] FAILED: Exception caught: RaidFile OSError (Error when accessing an underlying file. Check file permissions allow files to be read and written in the configured raid directories.) [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/basicserver\"" -c TestCommands.cpp -o ../../release/test/basicserver/TestCommands.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/basicserver\"" -c TestContext.cpp -o ../../release/test/basicserver/TestContext.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/basicserver\"" -c _main.cpp -o ../../release/test/basicserver/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/basicserver\"" -c autogen_TestProtocolClient.cpp -o ../../release/test/basicserver/autogen_TestProtocolClient.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/basicserver\"" -c autogen_TestProtocolServer.cpp -o ../../release/test/basicserver/autogen_TestProtocolServer.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/basicserver\"" -c testbasicserver.cpp -o ../../release/test/basicserver/testbasicserver.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from testbasicserver.cpp:24: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testbasicserver.cpp:24: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/basicserver/test ../../release/test/basicserver/TestCommands.o ../../release/test/basicserver/TestContext.o ../../release/test/basicserver/_main.o ../../release/test/basicserver/autogen_TestProtocolClient.o ../../release/test/basicserver/autogen_TestProtocolServer.o ../../release/test/basicserver/testbasicserver.o ../../release/lib/server/server.a ../../release/lib/common/common.a ../../qdbm/libqdbm.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23198): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23202): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 23209): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 23216): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupstore\"" -c _main.cpp -o ../../release/test/backupstore/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupstore\"" -c testbackupstore.cpp -o ../../release/test/backupstore/testbackupstore.o [ERROR ] testbackupstore.cpp: In function `void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: long long unsigned int format, int64_t arg (arg 2) [ERROR ] testbackupstore.cpp: In function `void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function `int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: long long unsigned int format, int64_t arg (arg 3) [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/backupstore/test ../../release/test/backupstore/../../bin/bbstored/HousekeepStoreAccount.o ../../release/test/backupstore/_main.o ../../release/test/backupstore/testbackupstore.o ../../release/lib/backupclient/backupclient.a ../../release/lib/backupstore/backupstore.a ../../release/lib/server/server.a ../../release/lib/raidfile/raidfile.a ../../release/lib/crypto/crypto.a ../../release/lib/compress/compress.a ../../qdbm/libqdbm.a ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdiWARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] rs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 23282): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 23345): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupctl; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbackupctl/bbackupctl \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbackupctl/bbackupctl \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupd; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbackupd/bbackupd \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbackupd/bbackupd \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupquery; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbackupquery/bbackupquery \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbackupquery/bbackupquery \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupstorefix\"" -c _main.cpp -o ../../release/test/backupstorefix/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbackupctl -I../../bin/bbackupd -I../../bin/bbackupquery -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupstorefix\"" -c testbackupstorefix.cpp -o ../../release/test/backupstorefix/testbackupstorefix.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/backupstorefix/test ../../release/test/backupstorefix/_main.o ../../release/test/backupstorefix/testbackupstorefix.o ../../release/lib/backupclient/backupclient.a ../../release/lib/backupstore/backupstore.a ../../release/lib/server/server.a ../../release/lib/raidfile/raidfile.a ../../release/lib/crypto/crypto.a ../../release/lib/compress/compress.a ../../qdbm/libqdbm.a ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23434): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x88 is unattached. [INFO ] WARNING: Object 0x88 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x88 is unattached. [INFO ] WARNING: Object 0x88 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0xf has wrong container ID. [INFO ] WARNING: Directory ID 0x1a references object 0x80 which does not exist. [INFO ] WARNING: Directory ID 0x1c has bad structure [INFO ] WARNING: Directory ID 0x1c has wrong size for object 0x89 [INFO ] WARNING: Object 0x6d is unattached. [INFO ] WARNING: Missing directory 0x15 could be recreated. [INFO ] WARNING: Object 0x6e is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x8a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0xf has wrong container ID. [INFO ] WARNING: Directory ID 0x1a references object 0x80 which does not exist. [INFO ] WARNING: Fixing directory ID 0x1a [INFO ] WARNING: Directory ID 0x1c has bad structure [INFO ] WARNING: Directory ID 0x1c has wrong size for object 0x89 [INFO ] WARNING: Fixing directory ID 0x1c [INFO ] WARNING: Object 0x6d is unattached. [INFO ] WARNING: Recreating missing directory 0x15 [INFO ] WARNING: Object 0x6e is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x8a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o0f found [INFO ] WARNING: Directory ID 0x8 references object 0x28 which is already contained. [INFO ] WARNING: Object 0x53 is unattached. [INFO ] WARNING: Missing directory 0xf could be recreated. [INFO ] WARNING: Object 0x54 is unattached. [INFO ] WARNING: Object 0x55 is unattached. [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o0f found, deleting [INFO ] WARNING: Directory ID 0x8 references object 0x28 which is already contained. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Object 0x53 is unattached. [INFO ] WARNING: Recreating missing directory 0xf [INFO ] WARNING: Object 0x54 is unattached. [INFO ] WARNING: Object 0x55 is unattached. [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xb is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xb is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o19 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o52 found [INFO ] WARNING: Directory ID 0xe references object 0x52 which does not exist. [INFO ] WARNING: Directory ID 0xb has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Missing directory 0x19 could be recreated. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o19 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o52 found, deleting [INFO ] WARNING: Directory ID 0xe references object 0x52 which does not exist. [INFO ] WARNING: Fixing directory ID 0xe [INFO ] WARNING: Directory ID 0xb has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Recreating missing directory 0x19 [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 23427): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupstorepatch\"" -c _main.cpp -o ../../release/test/backupstorepatch/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -I../../bin/bbstoreaccounts -I../../bin/bbstored -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupstorepatch\"" -c testbackupstorepatch.cpp -o ../../release/test/backupstorepatch/testbackupstorepatch.o [ERROR ] testbackupstorepatch.cpp: In function `int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: long long int format, int64_t arg (arg 2) [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/backupstorepatch/test ../../release/test/backupstorepatch/_main.o ../../release/test/backupstorepatch/testbackupstorepatch.o ../../release/lib/backupclient/backupclient.a ../../release/lib/backupstore/backupstore.a ../../release/lib/server/server.a ../../release/lib/raidfile/raidfile.a ../../release/lib/crypto/crypto.a ../../release/lib/compress/compress.a ../../qdbm/libqdbm.a ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupstorepatch/testfiles [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] ................................ [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] ................................ [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 23594): . done. [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupdiff\"" -c _main.cpp -o ../../release/test/backupdiff/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupdiff\"" -c difftestfiles.cpp -o ../../release/test/backupdiff/difftestfiles.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../lib/common -I../../qdbm -I../../lib/compress -I../../lib/crypto -I../../lib/raidfile -I../../lib/server -I../../lib/backupstore -I../../lib/backupclient -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/backupdiff\"" -c testbackupdiff.cpp -o ../../release/test/backupdiff/testbackupdiff.o [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/backupdiff/test ../../release/test/backupdiff/_main.o ../../release/test/backupdiff/difftestfiles.o ../../release/test/backupdiff/testbackupdiff.o ../../release/lib/backupclient/backupclient.a ../../release/lib/backupstore/backupstore.a ../../release/lib/server/server.a ../../release/lib/raidfile/raidfile.a ../../release/lib/crypto/crypto.a ../../release/lib/compress/compress.a ../../qdbm/libqdbm.a ../../release/lib/common/common.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupdiff/testfiles [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/compress; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/compress/compress.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/crypto; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/crypto/crypto.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/raidfile; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/raidfile/raidfile.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupstore; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupstore/backupstore.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/backupclient; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/backupclient/backupclient.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/intercept; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/intercept/intercept.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/intercept/intercept.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupctl; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbackupctl/bbackupctl \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbackupctl/bbackupctl \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupquery; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbackupquery/bbackupquery \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbackupquery/bbackupquery \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstoreaccounts; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstoreaccounts/bbstoreaccounts \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbstored; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbstored/bbstored \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../bin/bbackupd; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/bin/bbackupd/bbackupd \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/bin/bbackupd/bbackupd \ [INFO ] ) [ERROR ] gmake: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] ( \ [INFO ] cd ../../lib/win32; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/win32/win32.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../qdbm; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 libqdbm.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/common; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/common/common.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/server; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/server/server.a \ [INFO ] ) [INFO ] ( \ [INFO ] cd ../../lib/httpserver; \ [INFO ] gmake -q RELEASE=1 NODEPS=1 ../../release/lib/httpserver/httpserver.a \ [INFO ] || gmake RELEASE=1 NODEPS=1 ../../release/lib/httpserver/httpserver.a \ [INFO ] ) [INFO ] gmake[1]: Entering directory `lib/httpserver' [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPQueryDecoder.cpp -o ../../release/lib/httpserver/HTTPQueryDecoder.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPRequest.cpp -o ../../release/lib/httpserver/HTTPRequest.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from HTTPRequest.cpp:22: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from HTTPRequest.cpp:22: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPResponse.cpp -o ../../release/lib/httpserver/HTTPResponse.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from HTTPResponse.cpp:16: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from HTTPResponse.cpp:16: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c HTTPServer.cpp -o ../../release/lib/httpserver/HTTPServer.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from HTTPServer.cpp:17: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from HTTPServer.cpp:17: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c S3Client.cpp -o ../../release/lib/httpserver/S3Client.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c S3Simulator.cpp -o ../../release/lib/httpserver/S3Simulator.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c autogen_HTTPException.cpp -o ../../release/lib/httpserver/autogen_HTTPException.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c cdecode.cpp -o ../../release/lib/httpserver/cdecode.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"lib/httpserver\"" -c cencode.cpp -o ../../release/lib/httpserver/cencode.o [INFO ] (echo -n > ../../release/lib/httpserver/httpserver.a; rm ../../release/lib/httpserver/httpserver.a) [INFO ] ar cq ../../release/lib/httpserver/httpserver.a ../../release/lib/httpserver/HTTPQueryDecoder.o ../../release/lib/httpserver/HTTPRequest.o ../../release/lib/httpserver/HTTPResponse.o ../../release/lib/httpserver/HTTPServer.o ../../release/lib/httpserver/S3Client.o ../../release/lib/httpserver/S3Simulator.o ../../release/lib/httpserver/autogen_HTTPException.o ../../release/lib/httpserver/cdecode.o ../../release/lib/httpserver/cencode.o [INFO ] ranlib ../../release/lib/httpserver/httpserver.a [INFO ] gmake[1]: Leaving directory `lib/httpserver' [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/httpserver\"" -c _main.cpp -o ../../release/test/httpserver/_main.o [INFO ] g++ -I/usr/local/include -DBOX_RELEASE_BUILD -O2 -I/usr/local/include -m64 -Wall -Wundef -I../../lib/win32 -I../../qdbm -I../../lib/common -I../../lib/server -I../../lib/httpserver -DBOX_VERSION="\"trunk_2956\"" -DBOX_MODULE="\"test/httpserver\"" -c testhttpserver.cpp -o ../../release/test/httpserver/testhttpserver.o [ERROR ] In file included from ../../lib/common/IOStreamGetLine.h:15, [ERROR ] from testhttpserver.cpp:27: [ERROR ] ../../lib/common/GetLine.h:38: warning: `class GetLine' has virtual functions but non-virtual destructor [ERROR ] In file included from testhttpserver.cpp:27: [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: `class IOStreamGetLine' has virtual functions but non-virtual destructor [INFO ] g++ -L/usr/local/lib -L/usr/local/lib -m64 -o ../../release/test/httpserver/test ../../release/test/httpserver/_main.o ../../release/test/httpserver/testhttpserver.o ../../release/lib/httpserver/httpserver.a ../../release/lib/server/server.a ../../release/lib/common/common.a ../../qdbm/libqdbm.a ../../release/lib/win32/win32.a -lcrypto -lssl -lsocket -lnsl -lz -lrt [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] Can't locate LWP/UserAgent.pm in @INC (@INC contains: /usr/perl5/5.8.4/lib/i86pc-solaris-64int /usr/perl5/5.8.4/lib /usr/perl5/site_perl/5.8.4/i86pc-solaris-64int /usr/perl5/site_perl/5.8.4 /usr/perl5/site_perl /usr/perl5/vendor_perl/5.8.4/i86pc-solaris-64int /usr/perl5/vendor_perl/5.8.4 /usr/perl5/vendor_perl .) at testfiles/testrequests.pl line 3. [INFO ] BEGIN failed--compilation aborted at testfiles/testrequests.pl line 3. [INFO ] ERROR: **** TEST FAILURE: Condition [::system("perl testfiles/testrequests.pl") == 0] failed at testhttpserver.cpp:154 [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23795): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23803): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:154) [INFO ] -------- [INFO ] common: FAILED: 1 tests failed (first at testcommon.cpp:346) [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: FAILED: Exception caught: RaidFile OSError (Error when accessing an underlying file. Check file permissions allow files to be read and written in the configured raid directories.) [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:154) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking if non-aligned 16 bit word accesses fail... no [INFO ] checking if non-aligned 32 bit word accesses fail... no [INFO ] checking if non-aligned 64 bit word accesses fail... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 15:03:56 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 14:03:56 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2956] Trunk Message-ID: <20110502140356.A1CE118B0CC@www.boxbackup.org> Failed build of Box Backup [2956] --------------------------------------------------------------------- Changeset: 2956 - Committed by: jamesog Build Configuration: Trunk Build Platform: CentOS 5 x86_64 Build Slave: centos-vbox Build Number: 1752 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [ERROR ] GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23092): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23095): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 23101): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 23107): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] BackupStoreDaemon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0xe0a97f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 19WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] 0 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 23345): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 23391): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23547): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 23542): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 23668): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 5 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPResponse.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPServer.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23874): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23881): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/FdGetLine.h:26: warning: ?class FdGetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 26659): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 26662): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 26668): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 26674): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 26740): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 26788): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 26889): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x231 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x231 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o16 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o16 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/o07 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/o07 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 26870): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 27013): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPResponse.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] HTTPServer.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [ERROR ] ../../lib/common/GetLine.h:38: warning: ?class GetLine? has virtual functions but non-virtual destructor [ERROR ] ../../lib/common/IOStreamGetLine.h:27: warning: ?class IOStreamGetLine? has virtual functions but non-virtual destructor [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 27219): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 27226): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] (cd bin/bbackupd; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] make[2]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../release/lib/win32/win32.a [INFO ] [RANLIB] ../../release/lib/win32/win32.a [INFO ] make[2]: Leaving directory `lib/win32' [INFO ] make[2]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [ERROR ] Timer.cpp: In static member function ?static void Timers::Cleanup()?: [ERROR ] Timer.cpp:86: warning: unused variable ?result? [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../release/lib/common/common.a [INFO ] [RANLIB] ../../release/lib/common/common.a [INFO ] make[2]: Leaving directory `lib/common' [INFO ] make[2]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../release/lib/compress/compress.a [INFO ] [RANLIB] ../../release/lib/compress/compress.a [INFO ] make[2]: Leaving directory `lib/compress' [INFO ] make[2]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../release/lib/crypto/crypto.a [INFO ] [RANLIB] ../../release/lib/crypto/crypto.a [INFO ] make[2]: Leaving directory `lib/crypto' [INFO ] make[2]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../release/lib/server/server.a [INFO ] [RANLIB] ../../release/lib/server/server.a [INFO ] make[2]: Leaving directory `lib/server' [INFO ] make[2]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../release/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../release/lib/backupclient/backupclient.a [INFO ] make[2]: Leaving directory `lib/backupclient' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../release/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] (cd bin/bbackupquery; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../release/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] (cd bin/bbackupctl; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../release/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] make -C docs htmlguide/man-html/bbackupd.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.html parcels/boxbackup-trunk_2551-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupquery.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupquery.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupquery.html parcels/boxbackup-trunk_2551-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupctl.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupctl.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupctl.html parcels/boxbackup-trunk_2551-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupd-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd-config.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd-config.html parcels/boxbackup-trunk_2551-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupd.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbackupd.conf.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.conf.html parcels/boxbackup-trunk_2551-backup-client-linux-gnu/docs [INFO ] make -C docs man/bbackupd.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbackupd.xml [INFO ] [GZIP] man/bbackupd.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.8.gz parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] make -C docs man/bbackupquery.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbackupquery.xml [INFO ] [GZIP] man/bbackupquery.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupquery.8.gz parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] make -C docs man/bbackupctl.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbackupctl.xml [INFO ] [GZIP] man/bbackupctl.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupctl.8.gz parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbackupd-config.xml [INFO ] [GZIP] man/bbackupd-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd-config.8.gz parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbackupd.conf.xml [INFO ] [GZIP] man/bbackupd.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.conf.5.gz parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2551-backup-client-linux-gnu || mkdir parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] cp parcels/scripts/install-backup-client parcels/boxbackup-trunk_2551-backup-client-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2551-backup-client-linux-gnu | gzip -9 - > boxbackup-trunk_2551-backup-client-linux-gnu.tgz ) [INFO ] (cd bin/bbstored; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] make[2]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../release/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../release/lib/raidfile/raidfile.a [INFO ] make[2]: Leaving directory `lib/raidfile' [INFO ] make[2]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../release/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../release/lib/backupstore/backupstore.a [INFO ] make[2]: Leaving directory `lib/backupstore' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:262: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:467: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:582: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../release/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] (cd bin/bbstoreaccounts; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../release/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] make -C docs htmlguide/man-html/bbstored.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.html parcels/boxbackup-trunk_2551-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstoreaccounts.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstoreaccounts.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstoreaccounts.html parcels/boxbackup-trunk_2551-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored-certs.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored-certs.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-certs.html parcels/boxbackup-trunk_2551-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored-config.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-config.html parcels/boxbackup-trunk_2551-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/raidfile-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/raidfile-config.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile-config.html parcels/boxbackup-trunk_2551-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/bbstored.conf.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.conf.html parcels/boxbackup-trunk_2551-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/raidfile.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-nochunk-book.xsl docbook/raidfile.conf.xml [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile.conf.html parcels/boxbackup-trunk_2551-backup-server-linux-gnu/docs [INFO ] make -C docs man/bbstored.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored.xml [INFO ] [GZIP] man/bbstored.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] make -C docs man/bbstoreaccounts.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstoreaccounts.xml [INFO ] [GZIP] man/bbstoreaccounts.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-certs.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored-certs.xml [INFO ] [GZIP] man/bbstored-certs.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored-config.xml [INFO ] [GZIP] man/bbstored-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] make -C docs man/raidfile-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/raidfile-config.xml [INFO ] [GZIP] man/raidfile-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] make -C docs man/bbstored.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/bbstored.conf.xml [INFO ] [GZIP] man/bbstored.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] make -C docs man/raidfile.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] [XLSTPROC] docbook/bb-man.xsl docbook/raidfile.conf.xml [INFO ] [GZIP] man/raidfile.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2551-backup-server-linux-gnu || mkdir parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2551-backup-server-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2551-backup-server-linux-gnu | gzip -9 - > boxbackup-trunk_2551-backup-server-linux-gnu.tgz ) -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 2 15:05:47 2011 From: trac at boxbackup.org (Trac) Date: Mon, 02 May 2011 14:05:47 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2956] Trunk Message-ID: <20110502140547.BAF7D18B0DF@www.boxbackup.org> Failed build of Box Backup [2956] --------------------------------------------------------------------- Changeset: 2956 - Committed by: jamesog Build Configuration: Trunk Build Platform: Debian 4.0 amd64 Build Slave: wildfire Build Number: 1753 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [CXX] CompressStream.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23287): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23290): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 23296): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 23303): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [INFO ] [CXX] bbstored.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x1c14870 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 23544): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 23590): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23752): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x39 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x39 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 23747): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 23885): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 12 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 24118): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 24126): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking if non-aligned 16 bit word accesses fail... no [INFO ] checking if non-aligned 32 bit word accesses fail... no [INFO ] checking if non-aligned 64 bit word accesses fail... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 26913): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 26916): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 26922): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 26928): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 27028): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 27081): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 27167): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x51 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x51 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o09 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o09 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 27162): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 27286): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 27522): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 27529): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] U . [INFO ] Checked out revision 2550. -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From subversion at boxbackup.org Tue May 3 12:39:25 2011 From: subversion at boxbackup.org (subversion at boxbackup.org) Date: Tue, 3 May 2011 12:39:25 +0100 (BST) Subject: [Box Backup-commit] COMMIT r2957 - box/bitten Message-ID: <20110503113925.E357FE7F51@www.boxbackup.org> Author: jamesog Date: 2011-05-03 12:39:25 +0100 (Tue, 03 May 2011) New Revision: 2957 Added: box/bitten/minion Log: Add minion, a utility/wrapper script for bitten-slave. This script should be used on all hosts wanting to run as a build automation slave. It provides a few sanity checks of the environment to make sure there are no false build failures logged in Trac. Added: box/bitten/minion =================================================================== --- box/bitten/minion (rev 0) +++ box/bitten/minion 2011-05-03 11:39:25 UTC (rev 2957) @@ -0,0 +1,205 @@ +#!/bin/sh +# +# minion - Wrapper script for bitten-slave for Box Backup +# + +TRAC_URL="https://www.boxbackup.org/trac/builds" +LOG="-l bitten.log" +WORK_DIR="build" +SSH_ID="$HOME/.ssh/bitten-minion" + +# Need to export SSH_ID so it's passed down to bitten-slave +export SSH_ID + +build_os=`uname -s | tr [A-Z] [a-z]` +config="${build_os}.ini" + +# Func: chk_env +# Desc: Checks that the build environment is suitable +chk_env () { + echo "This looks like the first time you've run the bitten minion." + echo "I need to check a few things out first..." + echo + printf "Checking for Subversion... " + svn help >/dev/null 2>&1 + if [ $? -eq 0 ]; then + echo "OK" + else + printf "\n ==> ERROR: Subversion is missing.\n" + exit 1 + fi + + printf "Checking for autoconf... " + autoconf --help >/dev/null 2>&1 + if [ $? -eq 0 ]; then + echo "OK" + else + printf "\n ==> ERROR: autoconf is missing.\n" + exit 1 + fi + + printf "Checking for automake... " + automake --help >/dev/null 2>&1 + if [ $? -eq 0 ]; then + echo "OK" + else + printf "\n ==> ERROR: automake is missing.\n" + exit 1 + fi + + printf "Checking for gcc... " + gcc -v >/dev/null 2>&1 + if [ $? -eq 0 ]; then + echo "OK" + else + printf "\n ==> ERROR: gcc is missing.\n" + exit 1 + fi + + printf "Checking for g++... " + g++ -v >/dev/null 2>&1 + if [ $? -eq 0 ]; then + echo "OK" + else + printf "\n ==> ERROR: g++ is missing.\n" + exit 1 + fi + + printf "Checking for xsltproc... " + xsltproc -V >/dev/null 2>&1 + if [ $? -eq 0 ]; then + echo "OK" + else + printf "\n ==> ERROR: xsltproc is missing. Please install libxml.\n" + exit 1 + fi + + printf "Checking for LWP::UserAgent... " + perl -MLWP::UserAgent -e '' + if [ $? -eq 0 ]; then + echo "OK" + else + printf "\n ==> ERROR: Perl module LWP::UserAgent is missing. Please install libwww.\n" + exit 1 + fi + + printf "Checking if SSH key exists... " + test -f $SSH_ID >/dev/null 2>&1 + if [ $? -eq 0 ]; then + echo "OK" + else + printf "\n ==> SSH key does not exist. Running ssh-keygen.\n" + ssh-keygen -t rsa -f $SSH_ID -N '' + echo + echo " ==> SSH key generated. Be sure to have the key uploaded to the build master!" + fi + + echo + echo "All done! Binaries look fine, but make sure you have headers for the following:" + echo " - openssl" + echo " - zlib" + echo + echo "Exiting so you can check this, rather than having failed builds reported." + echo "Just re-run `basename $0` when ready." + + touch .minion_env + exit +} + +# Func: chk_dist +# Desc: Attempts to work out which distribution of Linux we're on. +chk_dist () { + if [ -f redhat-release ]; then + dist_name=`cat redhat-release | perl -ne '/ release/;print $\`'` + dist_ver=`cat redhat-release | perl -ne '/release (\d+(\.\d+)?)/;print $1'` + case "$dist_name" in + "Red Hat Ent"*) dist_name="RHEL" ;; + "Red Hat Linux"*) dist_name="RHL" ;; + esac + elif [ -f /etc/debian_version ]; then + dist_name="Debian" + dist_ver=`cat /etc/debian_version` + elif [ -f /etc/SuSE-release ]; then + dist_name="SuSE" + dist_ver=`cat /etc/SuSE-release | perl -ne '/VERSION = /;print $\`'` + case "$dist_name" in + SUSE*Desktop*) dist_name="SLED" ;; + SUSE*Server*) dist_name="SLES" ;; + esac + else + # What is this distribution? Tell me if you know! + # Default to "Linux" / kernel ver. + dist_name=`uname -s` + dist_ver=`uname -r` + fi +} + +# Func: gen_config +# Desc: Creates a bitten-slave configuration file (INI format). +gen_config () { + # If we're running a Linux variant, check and change config file name + [ x"$build_os" = x"linux" ] && { + chk_dist + config="`echo $dist_name | tr [A-Z] [a-z]`.ini" + } + + # Back up any existing config before (re-)creating + [ -f ${config} ] && mv $config ${config}.old + if [ -f ${config}.old ]; then + # Copy auth details from the old config + echo "[authentication]" > $config + grep "username =" ${config}.old >> $config + grep "password =" ${config}.old >> $config + else + cat >>$config <<-END_CONF + [authentication] + username = changeme + password = changeme + END_CONF + fi + cat >>$config <<-END-CONF + + # Un-comment the [machine] section and set name if you want to + # hide your hostname. + #[machine] + #name = myhostname + END-CONF + + case $build_os in + linux) + cat >>$config <<-END_CONF + + [os] + name = $dist_name + version = $dist_ver + END_CONF + ;; + esac + + echo "Config generated as $config." + echo "Please set Trac user/pass in the [authentication] section." + exit +} + +[ x"$1" = x"gen-config" ] && gen_config + +case "$build_os" in + sunos) + # Export variables needed for GCC on Solaris to avoid using the system + # OpenSSL. Change these to wherever your OpenSSL libs/headers are. + CFLAGS="-I/usr/local/include" + CXXFLAGS="-I/usr/local/include" + LDFLAGS="-L/usr/local/lib" + export CFLAGS CXXFLAGS LDFLAGS + ;; +esac + +[ ! -f .minion_env ] && chk_env + +if [ -f "${config}" ]; then + bitten-slave -f ${config} -d $WORK_DIR $LOG $* $TRAC_URL +else + echo "Config file missing. Please re-run with gen-config option." + exit 1 +fi + Property changes on: box/bitten/minion ___________________________________________________________________ Added: svn:executable + * From subversion at boxbackup.org Tue May 3 14:37:09 2011 From: subversion at boxbackup.org (subversion at boxbackup.org) Date: Tue, 3 May 2011 14:37:09 +0100 (BST) Subject: [Box Backup-commit] COMMIT r2958 - box/bitten Message-ID: <20110503133709.EE97CE750D@www.boxbackup.org> Author: jamesog Date: 2011-05-03 14:37:09 +0100 (Tue, 03 May 2011) New Revision: 2958 Modified: box/bitten/minion Log: Minor fix for Red Hat-based distros. Modified: box/bitten/minion =================================================================== --- box/bitten/minion 2011-05-03 11:39:25 UTC (rev 2957) +++ box/bitten/minion 2011-05-03 13:37:09 UTC (rev 2958) @@ -109,9 +109,9 @@ # Func: chk_dist # Desc: Attempts to work out which distribution of Linux we're on. chk_dist () { - if [ -f redhat-release ]; then - dist_name=`cat redhat-release | perl -ne '/ release/;print $\`'` - dist_ver=`cat redhat-release | perl -ne '/release (\d+(\.\d+)?)/;print $1'` + if [ -f /etc/redhat-release ]; then + dist_name=`cat /etc/redhat-release | perl -ne '/ release/;print $\`'` + dist_ver=`cat /etc/redhat-release | perl -ne '/release (\d+(\.\d+)?)/;print $1'` case "$dist_name" in "Red Hat Ent"*) dist_name="RHEL" ;; "Red Hat Linux"*) dist_name="RHL" ;; From subversion at boxbackup.org Tue May 3 14:46:22 2011 From: subversion at boxbackup.org (subversion at boxbackup.org) Date: Tue, 3 May 2011 14:46:22 +0100 (BST) Subject: [Box Backup-commit] COMMIT r2959 - box/bitten Message-ID: <20110503134622.D74B5E758C@www.boxbackup.org> Author: jamesog Date: 2011-05-03 14:46:22 +0100 (Tue, 03 May 2011) New Revision: 2959 Modified: box/bitten/minion Log: Another minor fix for Linux. (Config file name was only being detected at generation, not run.) Modified: box/bitten/minion =================================================================== --- box/bitten/minion 2011-05-03 13:37:09 UTC (rev 2958) +++ box/bitten/minion 2011-05-03 13:46:22 UTC (rev 2959) @@ -137,12 +137,6 @@ # Func: gen_config # Desc: Creates a bitten-slave configuration file (INI format). gen_config () { - # If we're running a Linux variant, check and change config file name - [ x"$build_os" = x"linux" ] && { - chk_dist - config="`echo $dist_name | tr [A-Z] [a-z]`.ini" - } - # Back up any existing config before (re-)creating [ -f ${config} ] && mv $config ${config}.old if [ -f ${config}.old ]; then @@ -157,13 +151,13 @@ password = changeme END_CONF fi - cat >>$config <<-END-CONF + cat >>$config <<-END_CONF # Un-comment the [machine] section and set name if you want to # hide your hostname. #[machine] #name = myhostname - END-CONF + END_CONF case $build_os in linux) @@ -181,8 +175,6 @@ exit } -[ x"$1" = x"gen-config" ] && gen_config - case "$build_os" in sunos) # Export variables needed for GCC on Solaris to avoid using the system @@ -192,8 +184,15 @@ LDFLAGS="-L/usr/local/lib" export CFLAGS CXXFLAGS LDFLAGS ;; + linux) + # If we're running a Linux variant, check and change config file name + chk_dist + config="`echo $dist_name | tr [A-Z] [a-z]`.ini" + ;; esac +[ x"$1" = x"gen-config" ] && gen_config + [ ! -f .minion_env ] && chk_env if [ -f "${config}" ]; then From subversion at boxbackup.org Wed May 4 21:30:58 2011 From: subversion at boxbackup.org (subversion at boxbackup.org) Date: Wed, 4 May 2011 21:30:58 +0100 (BST) Subject: [Box Backup-commit] COMMIT r2960 - box/trunk/lib/common Message-ID: <20110504203058.01076E71C1@www.boxbackup.org> Author: chris Date: 2011-05-04 21:30:57 +0100 (Wed, 04 May 2011) New Revision: 2960 Modified: box/trunk/lib/common/FdGetLine.h box/trunk/lib/common/GetLine.h Log: Add virtual destructors to GetLine and FdGetLine to silence warnings. Modified: box/trunk/lib/common/FdGetLine.h =================================================================== --- box/trunk/lib/common/FdGetLine.h 2011-05-03 13:46:22 UTC (rev 2959) +++ box/trunk/lib/common/FdGetLine.h 2011-05-04 20:30:57 UTC (rev 2960) @@ -26,7 +26,7 @@ { public: FdGetLine(int fd); - ~FdGetLine(); + virtual ~FdGetLine(); private: FdGetLine(const FdGetLine &rToCopy); Modified: box/trunk/lib/common/GetLine.h =================================================================== --- box/trunk/lib/common/GetLine.h 2011-05-03 13:46:22 UTC (rev 2959) +++ box/trunk/lib/common/GetLine.h 2011-05-04 20:30:57 UTC (rev 2960) @@ -45,6 +45,7 @@ public: virtual bool IsEOF() {return mEOF;} int GetLineNumber() {return mLineNumber;} + virtual ~GetLine() { } protected: bool GetLineInternal(std::string &rOutput, From subversion at boxbackup.org Wed May 4 21:34:39 2011 From: subversion at boxbackup.org (subversion at boxbackup.org) Date: Wed, 4 May 2011 21:34:39 +0100 (BST) Subject: [Box Backup-commit] COMMIT r2961 - box/trunk/lib/common Message-ID: <20110504203439.CE446E720A@www.boxbackup.org> Author: chris Date: 2011-05-04 21:34:39 +0100 (Wed, 04 May 2011) New Revision: 2961 Modified: box/trunk/lib/common/IOStreamGetLine.h Log: Another virtual destructor, this time for IOStreamGetLine. Modified: box/trunk/lib/common/IOStreamGetLine.h =================================================================== --- box/trunk/lib/common/IOStreamGetLine.h 2011-05-04 20:30:57 UTC (rev 2960) +++ box/trunk/lib/common/IOStreamGetLine.h 2011-05-04 20:34:39 UTC (rev 2961) @@ -27,7 +27,7 @@ { public: IOStreamGetLine(IOStream &Stream); - ~IOStreamGetLine(); + virtual ~IOStreamGetLine(); private: IOStreamGetLine(const IOStreamGetLine &rToCopy); From trac at boxbackup.org Wed May 4 21:51:56 2011 From: trac at boxbackup.org (Trac) Date: Wed, 04 May 2011 20:51:56 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2960] Trunk Message-ID: <20110504205156.675E7E7237@www.boxbackup.org> Failed build of Box Backup [2960] --------------------------------------------------------------------- Changeset: 2960 - Committed by: chris Build Configuration: Trunk Build Platform: Solaris 10 x86 Build Slave: solaris-vbox Build Number: 1764 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [INFO ] gmake[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] gmake[1]: Leaving directory `lib/win32' [INFO ] gmake[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [ERROR ] Configuration.cpp: In member function `bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [ERROR ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function `int memleakfinder_numleaks()': [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] gmake[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: **** TEST FAILURE: Condition [t1.HasExpired()] failed at testcommon.cpp:346 [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: [ ] imbalance or syntax error [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] FAILED: 1 tests failed (first at testcommon.cpp:346) [INFO ] gmake[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] gmake[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/crypto/testfiles [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] gmake[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] gmake[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/compress/testfiles [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] gmake[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] gmake[1]: Leaving directory `lib/intercept' [INFO ] gmake[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] gmake[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 1024) == 1024] failed at testraidfile.cpp:733 [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 512) == 512] failed at testraidfile.cpp:738 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) (Failed to read parity RaidFile: testfiles/0_2/testdd.rf: No such file or directory (2)) at RaidFileRead.cpp(1274) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] FAILED: Exception caught: RaidFile OSError [INFO ] gmake[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] gmake[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 4490): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 4494): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 4501): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 4508): . done. [INFO ] PASSED [INFO ] gmake[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function `static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] gmake[1]: Leaving directory `lib/backupstore' [INFO ] gmake[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function `void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [ERROR ] BackupStoreFileDiff.cpp:1033: warning: long long int format, long int arg (arg 3) [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] gmake[1]: Leaving directory `lib/backupclient' [INFO ] gmake[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] gmake[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] gmake[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function `void HousekeepStoreAccount::DoHousekeeping(bool)': [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function `bool HousekeepStoreAccount::ScanDirectory(int64_t)': [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] gmake[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function `void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: long long unsigned int format, int64_t arg (arg 2) [ERROR ] testbackupstore.cpp: In function `void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function `int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: long long unsigned int format, int64_t arg (arg 3) [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Block 0x5f0930 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirsWARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] , depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 4739): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 4802): . done. [INFO ] PASSED [INFO ] gmake[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] gmake[1]: Leaving directory `bin/bbackupctl' [INFO ] gmake[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] gmake[1]: Leaving directory `bin/bbackupd' [INFO ] gmake[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] gmake[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 4960): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: Object 0x3d is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: Object 0x3d is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x7 references object 0x3a which does not exist. [INFO ] WARNING: Directory ID 0x9 has bad structure [INFO ] WARNING: Directory ID 0x9 has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x10 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x19 could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x7 references object 0x3a which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x9 has bad structure [INFO ] WARNING: Directory ID 0x9 has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0x9 [INFO ] WARNING: Directory ID 0x10 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x19 [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/00/01/o00 found [INFO ] WARNING: Directory ID 0x13 references object 0x5e which is already contained. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: Missing directory 0x10 could be recreated. [INFO ] WARNING: Object 0x59 is unattached. [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: Object 0x5d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/00/01/o00 found, deleting [INFO ] WARNING: Directory ID 0x13 references object 0x5e which is already contained. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: Recreating missing directory 0x10 [INFO ] WARNING: Object 0x59 is unattached. [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: Object 0x5d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xc is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xc is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/01/o02 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/00/01/o01 found [INFO ] WARNING: Directory ID 0xe references object 0x4d which does not exist. [INFO ] WARNING: Directory ID 0xc has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x6 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/01/o02 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/00/01/o01 found, deleting [INFO ] WARNING: Directory ID 0xe references object 0x4d which does not exist. [INFO ] WARNING: Fixing directory ID 0xe [INFO ] WARNING: Directory ID 0xc has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x6 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 4953): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function `int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: long long int format, int64_t arg (arg 2) [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupstorepatch/testfiles [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] ................................ [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 5121): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupdiff/testfiles [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 6 seconds [INFO ] PASSED [ERROR ] gmake: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] gmake[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] gmake[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 5326): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 5335): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: FAILED: 1 tests failed (first at testcommon.cpp:346) [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: FAILED: Exception caught: RaidFile OSError [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-linux-gnu [INFO ] checking host system type... x86_64-unknown-linux-gnu [INFO ] checking target system type... x86_64-unknown-linux-gnu [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /bin/grep [INFO ] checking for egrep... /bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... -ledit [INFO ] checking editline/readline.h usability... yes [INFO ] checking editline/readline.h presence... yes [INFO ] checking for editline/readline.h... yes [INFO ] checking whether editline supports history... yes [INFO ] checking for editline/readline.h... (cached) yes [INFO ] checking for db.h... 4.4.20 [INFO ] checking for library containing Berkeley DB 4.4.20... -ldb [INFO ] configure: using Berkeley DB version 4.4.20 [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... yes [INFO ] checking execinfo.h presence... yes [INFO ] checking for execinfo.h... yes [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... yes [INFO ] checking sys/xattr.h presence... yes [INFO ] checking for sys/xattr.h... yes [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... yes [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... no [INFO ] checking for struct stat.st_mtimespec... no [INFO ] checking for struct stat.st_atim.tv_nsec... yes [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... no [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... no [INFO ] checking whether INFTIM is declared... no [INFO ] checking whether SO_PEERCRED is declared... yes [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... no [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... no [INFO ] checking sys/endian.h presence... no [INFO ] checking for sys/endian.h... no [INFO ] checking asm/byteorder.h usability... yes [INFO ] checking asm/byteorder.h presence... yes [INFO ] checking for asm/byteorder.h... yes [INFO ] checking for __cpu_to_be64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... yes [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... yes [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... no [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... yes [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... yes [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... yes [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... no [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... no [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... no [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... yes [INFO ] checking for llistxattr... yes [INFO ] checking for getxattr... yes [INFO ] checking for lgetxattr... yes [INFO ] checking for setxattr... yes [INFO ] checking for lsetxattr... yes [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... no [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'Linux'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Generating Compress exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating HTTP exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: yes [INFO ] Readline: yes [INFO ] Extended attributes: yes Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: **** TEST FAILURE: Condition [t1.HasExpired()] failed at testcommon.cpp:346 [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: [ ] imbalance or syntax error [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] FAILED: 1 tests failed (first at testcommon.cpp:346) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/crypto/testfiles [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/compress/testfiles [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] gmake[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] gmake[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 1024) == 1024] failed at testraidfile.cpp:733 [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 512) == 512] failed at testraidfile.cpp:738 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) (Failed to read parity RaidFile: testfiles/0_2/testdd.rf: No such file or directory (2)) at RaidFileRead.cpp(1274) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] FAILED: Exception caught: RaidFile OSError (Error when accessing an underlying file. Check file permissions allow files to be read and written in the configured raid directories.) [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 7641): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 7645): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 7652): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 7659): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function `void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: long long unsigned int format, int64_t arg (arg 2) [ERROR ] testbackupstore.cpp: In function `void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function `int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: long long unsigned int format, int64_t arg (arg 3) [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdiWARNING: Failed to lock account for housekeeping, still trying... [INFO ] rs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 7726): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 7789): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 7879): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x41 is unattached. [INFO ] WARNING: Object 0x41 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x41 is unattached. [INFO ] WARNING: Object 0x41 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x7 references object 0x39 which does not exist. [INFO ] WARNING: Directory ID 0x9 has bad structure [INFO ] WARNING: Directory ID 0x9 has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Missing directory 0x1c could be recreated. [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x7 references object 0x39 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x9 has bad structure [INFO ] WARNING: Directory ID 0x9 has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0x9 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Recreating missing directory 0x1c [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o13 found [INFO ] WARNING: Directory ID 0x10 references object 0x48 which is already contained. [INFO ] WARNING: Object 0x71 is unattached. [INFO ] WARNING: Missing directory 0x13 could be recreated. [INFO ] WARNING: Object 0x72 is unattached. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o13 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x71 is unattached. [INFO ] WARNING: Recreating missing directory 0x13 [INFO ] WARNING: Object 0x72 is unattached. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x17 is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x17 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o05 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6f found [INFO ] WARNING: Directory ID 0x12 references object 0x6f which does not exist. [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: File ID 0x7c has different container ID, probably moved [INFO ] WARNING: Object 0x33 is unattached. [INFO ] WARNING: Missing directory 0x5 could be recreated. [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o05 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6f found, deleting [INFO ] WARNING: Directory ID 0x12 references object 0x6f which does not exist. [INFO ] WARNING: Fixing directory ID 0x12 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: File ID 0x7c has different container ID, probably moved [INFO ] WARNING: Object 0x33 is unattached. [INFO ] WARNING: Recreating missing directory 0x5 [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x7c has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x7c has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 7872): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function `int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: long long int format, int64_t arg (arg 2) [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupstorepatch/testfiles [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] ................................ [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] ................................ [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 8040): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupdiff/testfiles [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] gmake: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] gmake[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] gmake[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 8245): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 8254): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: FAILED: 1 tests failed (first at testcommon.cpp:346) [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: FAILED: Exception caught: RaidFile OSError (Error when accessing an underlying file. Check file permissions allow files to be read and written in the configured raid directories.) [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking if non-aligned 16 bit word accesses fail... no [INFO ] checking if non-aligned 32 bit word accesses fail... no [INFO ] checking if non-aligned 64 bit word accesses fail... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(116) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(133) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (!spTimers) at Timer.cpp(43) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(100) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(156) [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] WARNING: Exception thrown: RaidFileException(RequestedDeleteReferencedFile) at RaidFileWrite.cpp(684) [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] WARNING: Exception thrown: RaidFileException(RequestedModifyUnreferencedFile) at RaidFileWrite.cpp(289) [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] WARNING: Exception thrown: RaidFileException(RequestedModifyMultiplyReferencedFile) at RaidFileWrite.cpp(82) [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(131) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(175) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 25085): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 25088): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 25094): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 25100): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:262: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:467: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:582: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x1e1d6f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(131) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:411: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 11 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../debug/test/bbackupd/test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] WARNING: Exception thrown: ConnectionException(Conn_SocketWriteError) at SocketStream.cpp(312) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 25774): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 25782): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Wed May 4 21:54:25 2011 From: trac at boxbackup.org (Trac) Date: Wed, 04 May 2011 20:54:25 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2960] Trunk Message-ID: <20110504205425.32968E7241@www.boxbackup.org> Failed build of Box Backup [2960] --------------------------------------------------------------------- Changeset: 2960 - Committed by: chris Build Configuration: Trunk Build Platform: CentOS 5 x86_64 Build Slave: centos-vbox Build Number: 1759 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13986): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13991): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 13997): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 14003): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x1fa57f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 14239): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 14285): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 14443): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 282 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 282 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 14438): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 14562): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 5 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 14768): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 14775): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-linux-gnu [INFO ] checking host system type... x86_64-unknown-linux-gnu [INFO ] checking target system type... x86_64-unknown-linux-gnu [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /bin/grep [INFO ] checking for egrep... /bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... -ledit [INFO ] checking editline/readline.h usability... yes [INFO ] checking editline/readline.h presence... yes [INFO ] checking for editline/readline.h... yes [INFO ] checking whether editline supports history... yes [INFO ] checking for editline/readline.h... (cached) yes [INFO ] checking for db.h... 4.4.20 [INFO ] checking for library containing Berkeley DB 4.4.20... -ldb [INFO ] configure: using Berkeley DB version 4.4.20 [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... yes [INFO ] checking execinfo.h presence... yes [INFO ] checking for execinfo.h... yes [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... yes [INFO ] checking sys/xattr.h presence... yes [INFO ] checking for sys/xattr.h... yes [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... yes [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... no [INFO ] checking for struct stat.st_mtimespec... no [INFO ] checking for struct stat.st_atim.tv_nsec... yes [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... no [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... no [INFO ] checking whether INFTIM is declared... no [INFO ] checking whether SO_PEERCRED is declared... yes [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... no [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... no [INFO ] checking sys/endian.h presence... no [INFO ] checking for sys/endian.h... no [INFO ] checking asm/byteorder.h usability... yes [INFO ] checking asm/byteorder.h presence... yes [INFO ] checking for asm/byteorder.h... yes [INFO ] checking for __cpu_to_be64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... yes [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... yes [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... no [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... yes [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... yes [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... yes [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... no [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... no [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... no [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... yes [INFO ] checking for llistxattr... yes [INFO ] checking for getxattr... yes [INFO ] checking for lgetxattr... yes [INFO ] checking for setxattr... yes [INFO ] checking for lsetxattr... yes [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... no [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'Linux'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Generating Compress exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating HTTP exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: yes [INFO ] Readline: yes [INFO ] Extended attributes: yes [INFO ] (cd bin/bbackupd; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] make[2]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../release/lib/win32/win32.a [INFO ] [RANLIB] ../../release/lib/win32/win32.a [INFO ] make[2]: Leaving directory `lib/win32' [INFO ] make[2]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [ERROR ] Timer.cpp: In static member function ?static void Timers::Cleanup()?: [ERROR ] Timer.cpp:86: warning: unused variable ?result? [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../release/lib/common/common.a [INFO ] [RANLIB] ../../release/lib/common/common.a [INFO ] make[2]: Leaving directory `lib/common' [INFO ] make[2]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../release/lib/compress/compress.a [INFO ] [RANLIB] ../../release/lib/compress/compress.a [INFO ] make[2]: Leaving directory `lib/compress' [INFO ] make[2]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../release/lib/crypto/crypto.a [INFO ] [RANLIB] ../../release/lib/crypto/crypto.a [INFO ] make[2]: Leaving directory `lib/crypto' [INFO ] make[2]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../release/lib/server/server.a [INFO ] [RANLIB] ../../release/lib/server/server.a [INFO ] make[2]: Leaving directory `lib/server' [INFO ] make[2]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../release/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../release/lib/backupclient/backupclient.a [INFO ] make[2]: Leaving directory `lib/backupclient' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../release/bin/bbackupd/bbackupd [ERROR ] ../../release/bin/bbackupd/BackupClientContext.o: In function `BackupClientContext::GetCurrentIDMap() const': [ERROR ] bin/bbackupd/BackupClientContext.cpp:380: undefined reference to `HideExceptionMessageGuard::sHiddenState' [ERROR ] ../../release/bin/bbackupd/BackupClientContext.o: In function `BackupClientContext::GetNewIDMap() const': [ERROR ] bin/bbackupd/BackupClientContext.cpp:398: undefined reference to `HideExceptionMessageGuard::sHiddenState' [ERROR ] ../../release/bin/bbackupd/BackupClientContext.o: In function `BackupClientContext::GetConnection()': [ERROR ] bin/bbackupd/BackupClientContext.cpp:171: undefined reference to `HideExceptionMessageGuard::sHiddenState' [ERROR ] bin/bbackupd/BackupClientContext.cpp:196: undefined reference to `HideExceptionMessageGuard::sHiddenState' [ERROR ] ../../release/bin/bbackupd/BackupClientDirectoryRecord.o: In function `BackupClientDirectoryRecord::Deserialize(Archive&)': [ERROR ] bin/bbackupd/BackupClientDirectoryRecord.cpp:1736: undefined reference to `HideExceptionMessageGuard::sHiddenState' [INFO ] make[1]: Leaving directory `bin/bbackupd' [ERROR ] ../../release/bin/bbackupd/BackupClientDirectoryRecord.o:bin/bbackupd/../../lib/common/Archive.h:96: more undefined references to `HideExceptionMessageGuard::sHiddenState' follow [ERROR ] collect2: ld returned 1 exit status [ERROR ] make[1]: *** [../../release/bin/bbackupd/bbackupd] Error 1 [ERROR ] make: *** [release/bin/bbackupd/bbackupd] Error 2 Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 17551): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17554): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 17560): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 17566): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 17634): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 17682): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17767): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x229 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x229 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o16 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o16 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/o07 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/o07 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 17762): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 17890): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 18096): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 18103): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(116) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(133) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (!spTimers) at Timer.cpp(43) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(100) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(156) [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(145) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 32228): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 32233): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 32250): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 32258): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:262: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:467: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp:582: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x1b056f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstore.cpp:1793 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:411: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorepatch.cpp:327 [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 11 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../debug/test/bbackupd/test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] WARNING: Exception thrown: ConnectionException(Conn_SocketWriteError) at SocketStream.cpp(312) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 452): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 459): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] (cd bin/bbackupd; make -D RELEASE) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [ERROR ] Timer.cpp: In static member function 'static void Timers::Cleanup()': [ERROR ] Timer.cpp:86: warning: unused variable 'result' [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] mkdir -p parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupquery; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] mkdir -p parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupctl; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] mkdir -p parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] (cd docs; make bb-man.xsl; if [ ! -d man ]; then mkdir man; fi) [INFO ] (cd docs; make bbackupd.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd [ERROR ] Note: Writing bbackupd.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupd.8.gz parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] (cd docs; make bbackupquery.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupquery [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupquery [ERROR ] Note: Writing bbackupquery.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupquery.8.gz parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] (cd docs; make bbackupctl.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupctl [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupctl [ERROR ] Note: Writing bbackupctl.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupctl.8.gz parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] (cd docs; make bbackupd-config.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd-config [ERROR ] Note: Writing bbackupd-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupd-config.8.gz parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] (cd docs; make bbackupd.conf.5) [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd.conf [ERROR ] Note: Writing bbackupd.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] cp -p docs/man/bbackupd.conf.5.gz parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 || mkdir parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-client parcels/boxbackup-trunk_2466-backup-client-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2466-backup-client-freebsd7.2 | gzip -9 - > boxbackup-trunk_2466-backup-client-freebsd7.2.tgz ) -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Wed May 4 22:00:45 2011 From: trac at boxbackup.org (Trac) Date: Wed, 04 May 2011 21:00:45 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2960] Trunk Message-ID: <20110504210045.6D945E7277@www.boxbackup.org> Failed build of Box Backup [2960] --------------------------------------------------------------------- Changeset: 2960 - Committed by: chris Build Configuration: Trunk Build Platform: Debian 4.0 amd64 Build Slave: wildfire Build Number: 1760 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 16747): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 16750): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 16756): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 16763): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [INFO ] [CXX] bbstored.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x20c9870 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 17005): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 17051): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17209): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x41 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x41 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 17204): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 17328): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 12 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17535): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17542): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] (cd bin/bbackupd; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] make[2]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../release/lib/win32/win32.a [INFO ] [RANLIB] ../../release/lib/win32/win32.a [INFO ] make[2]: Leaving directory `lib/win32' [INFO ] make[2]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [ERROR ] Timer.cpp: In static member function ?static void Timers::Cleanup()?: [ERROR ] Timer.cpp:86: warning: unused variable ?result? [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../release/lib/common/common.a [INFO ] [RANLIB] ../../release/lib/common/common.a [INFO ] make[2]: Leaving directory `lib/common' [INFO ] make[2]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../release/lib/compress/compress.a [INFO ] [RANLIB] ../../release/lib/compress/compress.a [INFO ] make[2]: Leaving directory `lib/compress' [INFO ] make[2]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../release/lib/crypto/crypto.a [INFO ] [RANLIB] ../../release/lib/crypto/crypto.a [INFO ] make[2]: Leaving directory `lib/crypto' [INFO ] make[2]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../release/lib/server/server.a [INFO ] [RANLIB] ../../release/lib/server/server.a [INFO ] make[2]: Leaving directory `lib/server' [INFO ] make[2]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../release/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../release/lib/backupclient/backupclient.a [INFO ] make[2]: Leaving directory `lib/backupclient' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../release/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] mkdir -p parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] (cd bin/bbackupquery; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../release/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] mkdir -p parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] (cd bin/bbackupctl; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../release/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] mkdir -p parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] make -C docs htmlguide/man-html/bbackupd.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupd.html docbook/bb-nochunk-book.xsl docbook/bbackupd.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2543-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.html parcels/boxbackup-trunk_2543-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupquery.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupquery.html docbook/bb-nochunk-book.xsl docbook/bbackupquery.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupquery [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupquery [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2543-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupquery.html parcels/boxbackup-trunk_2543-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupctl.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupctl.html docbook/bb-nochunk-book.xsl docbook/bbackupctl.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupctl [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupctl [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2543-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupctl.html parcels/boxbackup-trunk_2543-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupd-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupd-config.html docbook/bb-nochunk-book.xsl docbook/bbackupd-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd-config [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2543-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd-config.html parcels/boxbackup-trunk_2543-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupd.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupd.conf.html docbook/bb-nochunk-book.xsl docbook/bbackupd.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd.conf [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2543-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.conf.html parcels/boxbackup-trunk_2543-backup-client-linux-gnu/docs [INFO ] make -C docs man/bbackupd.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupd.8 docbook/bb-man.xsl docbook/bbackupd.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd [ERROR ] Note: meta date : no date; using generated date bbackupd [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd [ERROR ] Note: Writing bbackupd.8 [INFO ] gzip man/bbackupd.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.8.gz parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] make -C docs man/bbackupquery.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupquery.8 docbook/bb-man.xsl docbook/bbackupquery.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupquery [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupquery [ERROR ] Note: meta date : no date; using generated date bbackupquery [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupquery [ERROR ] Note: Writing bbackupquery.8 [INFO ] gzip man/bbackupquery.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupquery.8.gz parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] make -C docs man/bbackupctl.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupctl.8 docbook/bb-man.xsl docbook/bbackupctl.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupctl [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupctl [ERROR ] Note: meta date : no date; using generated date bbackupctl [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupctl [ERROR ] Note: Writing bbackupctl.8 [INFO ] gzip man/bbackupctl.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupctl.8.gz parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupd-config.8 docbook/bb-man.xsl docbook/bbackupd-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd-config [ERROR ] Note: meta date : no date; using generated date bbackupd-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd-config [ERROR ] Note: Writing bbackupd-config.8 [INFO ] gzip man/bbackupd-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd-config.8.gz parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupd.conf.5 docbook/bb-man.xsl docbook/bbackupd.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd.conf [ERROR ] Note: meta date : no date; using generated date bbackupd.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd.conf [ERROR ] Note: Writing bbackupd.conf.5 [INFO ] gzip man/bbackupd.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.conf.5.gz parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2543-backup-client-linux-gnu || mkdir parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] cp parcels/scripts/install-backup-client parcels/boxbackup-trunk_2543-backup-client-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2543-backup-client-linux-gnu | gzip -9 - > boxbackup-trunk_2543-backup-client-linux-gnu.tgz ) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [ERROR ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [ERROR ] DebugMemLeakFinder.cpp:341: warning: unused variable 'rInfo' [ERROR ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [ERROR ] DebugMemLeakFinder.cpp:361: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [ERROR ] DebugMemLeakFinder.cpp:373: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [ERROR ] testcommon.cpp: In function 'int test(int, const char**)': [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(116) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(133) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (!spTimers) at Timer.cpp(43) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(427) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(582) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(90) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 98779): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 98783): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 98790): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 98809): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [ERROR ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [ERROR ] BackupStoreFileDiff.cpp:1031: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:435: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)': [ERROR ] testbackupstore.cpp:487: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8013030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 99039): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 99125): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:411: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 99373): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(290) [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 4 seconds [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/lib/intercept/intercept.a' is up to date. [INFO ] `../../debug/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../debug/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] `../../debug/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:390 [INFO ] done. [INFO ] Waiting for server to die (pid 99625): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] Starting server: ./test s3server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 99635): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:390) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:390) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20353): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20356): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 20362): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 20369): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 20461): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 20507): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 20594): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x49 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x49 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 282 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 282 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o09 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o09 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 20589): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 20718): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 21045): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 21052): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(100) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(156) [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(145) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 15043): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 15046): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 15053): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 15060): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:438: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:510: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [ERROR ] ../../release/test/backupstore/../../bin/bbstored/HousekeepStoreAccount.o: In function `HousekeepStoreAccount::DeleteEmptyDirectories()': [ERROR ] bin/bbstored/HousekeepStoreAccount.cpp:811: undefined reference to `BackupStoreDaemon::CheckForInterProcessMsg(int, int)' [ERROR ] ../../release/test/backupstore/../../bin/bbstored/HousekeepStoreAccount.o: In function `HousekeepStoreAccount::ScanDirectory(long)': [ERROR ] bin/bbstored/HousekeepStoreAccount.cpp:282: undefined reference to `BackupStoreDaemon::CheckForInterProcessMsg(int, int)' [ERROR ] ../../release/test/backupstore/../../bin/bbstored/HousekeepStoreAccount.o: In function `HousekeepStoreAccount::DeleteFiles()': [ERROR ] bin/bbstored/HousekeepStoreAccount.cpp:554: undefined reference to `BackupStoreDaemon::CheckForInterProcessMsg(int, int)' [ERROR ] collect2: ld returned 1 exit status [ERROR ] make: *** [../../release/test/backupstore/test] Error 1 [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:411: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 15246): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../release/test/bbackupd/test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] WARNING: Exception thrown: ConnectionException(Conn_SocketWriteError) at SocketStream.cpp(312) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 15498): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 15505): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: make failed [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] U . [INFO ] Checked out revision 2539. -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Wed May 4 22:10:29 2011 From: trac at boxbackup.org (Trac) Date: Wed, 04 May 2011 21:10:29 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2961] Trunk Message-ID: <20110504211029.CC05B18C540@www.boxbackup.org> Failed build of Box Backup [2961] --------------------------------------------------------------------- Changeset: 2961 - Committed by: chris Build Configuration: Trunk Build Platform: Solaris 10 x86 Build Slave: solaris-vbox Build Number: 1771 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [INFO ] gmake[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] gmake[1]: Leaving directory `lib/win32' [INFO ] gmake[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [ERROR ] Configuration.cpp: In member function `bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [ERROR ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function `int memleakfinder_numleaks()': [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] gmake[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: **** TEST FAILURE: Condition [t1.HasExpired()] failed at testcommon.cpp:346 [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: [ ] imbalance or syntax error [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] FAILED: 1 tests failed (first at testcommon.cpp:346) [INFO ] gmake[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] gmake[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/crypto/testfiles [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] gmake[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] gmake[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/compress/testfiles [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] gmake[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] gmake[1]: Leaving directory `lib/intercept' [INFO ] gmake[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] gmake[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 1024) == 1024] failed at testraidfile.cpp:733 [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 512) == 512] failed at testraidfile.cpp:738 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) (Failed to read parity RaidFile: testfiles/0_2/testdd.rf: No such file or directory (2)) at RaidFileRead.cpp(1274) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] FAILED: Exception caught: RaidFile OSError [INFO ] gmake[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] gmake[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 16749): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 16753): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 16760): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 16767): . done. [INFO ] PASSED [INFO ] gmake[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function `static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] gmake[1]: Leaving directory `lib/backupstore' [INFO ] gmake[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function `void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [ERROR ] BackupStoreFileDiff.cpp:1033: warning: long long int format, long int arg (arg 3) [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] gmake[1]: Leaving directory `lib/backupclient' [INFO ] gmake[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] gmake[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] gmake[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function `void HousekeepStoreAccount::DoHousekeeping(bool)': [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function `bool HousekeepStoreAccount::ScanDirectory(int64_t)': [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] gmake[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function `void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: long long unsigned int format, int64_t arg (arg 2) [ERROR ] testbackupstore.cpp: In function `void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function `int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: long long unsigned int format, int64_t arg (arg 3) [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Block 0x5f0930 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirsWARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] , depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 16998): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 17061): . done. [INFO ] PASSED [INFO ] gmake[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] gmake[1]: Leaving directory `bin/bbackupctl' [INFO ] gmake[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] gmake[1]: Leaving directory `bin/bbackupd' [INFO ] gmake[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] gmake[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17219): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: Object 0x47 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: Object 0x47 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0xa references object 0x42 which does not exist. [INFO ] WARNING: Directory ID 0xc has bad structure [INFO ] WARNING: Directory ID 0xc has wrong size for object 0x4a [INFO ] WARNING: Directory ID 0x12 has wrong container ID. [INFO ] WARNING: Object 0x2e is unattached. [INFO ] WARNING: Missing directory 0x5 could be recreated. [INFO ] WARNING: Object 0x2f is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x4b: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0xa references object 0x42 which does not exist. [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0xc has bad structure [INFO ] WARNING: Directory ID 0xc has wrong size for object 0x4a [INFO ] WARNING: Fixing directory ID 0xc [INFO ] WARNING: Directory ID 0x12 has wrong container ID. [INFO ] WARNING: Object 0x2e is unattached. [INFO ] WARNING: Recreating missing directory 0x5 [INFO ] WARNING: Object 0x2f is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x4b: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/00/01/o02 found [INFO ] WARNING: Directory ID 0x1c references object 0x6f which is already contained. [INFO ] WARNING: Object 0x62 is unattached. [INFO ] WARNING: Missing directory 0x12 could be recreated. [INFO ] WARNING: Object 0x63 is unattached. [INFO ] WARNING: Object 0x64 is unattached. [INFO ] WARNING: Object 0x65 is unattached. [INFO ] WARNING: Object 0x66 is unattached. [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/00/01/o02 found, deleting [INFO ] WARNING: Directory ID 0x1c references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1c [INFO ] WARNING: Object 0x62 is unattached. [INFO ] WARNING: Recreating missing directory 0x12 [INFO ] WARNING: Object 0x63 is unattached. [INFO ] WARNING: Object 0x64 is unattached. [INFO ] WARNING: Object 0x65 is unattached. [INFO ] WARNING: Object 0x66 is unattached. [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x16 is unattached. [INFO ] WARNING: Object 0x6d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x16 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x6d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/03/o03 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/01/01/o01 found [INFO ] WARNING: Directory ID 0x11 references object 0x5d which does not exist. [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: Missing directory 0xf could be recreated. [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/03/o03 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/01/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x11 references object 0x5d which does not exist. [INFO ] WARNING: Fixing directory ID 0x11 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: Recreating missing directory 0xf [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 17212): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function `int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: long long int format, int64_t arg (arg 2) [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupstorepatch/testfiles [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 17380): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupdiff/testfiles [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 6 seconds [INFO ] PASSED [ERROR ] gmake: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] gmake[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] gmake[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17585): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17594): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: FAILED: 1 tests failed (first at testcommon.cpp:346) [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: FAILED: Exception caught: RaidFile OSError [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] (cd bin/bbstored; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] make[2]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../release/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../release/lib/raidfile/raidfile.a [INFO ] make[2]: Leaving directory `lib/raidfile' [INFO ] make[2]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../release/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../release/lib/backupstore/backupstore.a [INFO ] make[2]: Leaving directory `lib/backupstore' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../release/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] (cd bin/bbstoreaccounts; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../release/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] make -C docs htmlguide/man-html/bbstored.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbstored.html docbook/bb-nochunk-book.xsl docbook/bbstored.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.html parcels/boxbackup-trunk_2537-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstoreaccounts.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbstoreaccounts.html docbook/bb-nochunk-book.xsl docbook/bbstoreaccounts.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstoreaccounts.html parcels/boxbackup-trunk_2537-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored-certs.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbstored-certs.html docbook/bb-nochunk-book.xsl docbook/bbstored-certs.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-certs.html parcels/boxbackup-trunk_2537-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbstored-config.html docbook/bb-nochunk-book.xsl docbook/bbstored-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-config.html parcels/boxbackup-trunk_2537-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/raidfile-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/raidfile-config.html docbook/bb-nochunk-book.xsl docbook/raidfile-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile-config.html parcels/boxbackup-trunk_2537-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbstored.conf.html docbook/bb-nochunk-book.xsl docbook/bbstored.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.conf.html parcels/boxbackup-trunk_2537-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/raidfile.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/raidfile.conf.html docbook/bb-nochunk-book.xsl docbook/raidfile.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile.conf.html parcels/boxbackup-trunk_2537-backup-server-linux-gnu/docs [INFO ] make -C docs man/bbstored.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbstored.8 docbook/bb-man.xsl docbook/bbstored.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [ERROR ] Note: meta date : no date; using generated date bbstored [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored [ERROR ] Note: Writing bbstored.8 [INFO ] gzip man/bbstored.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] make -C docs man/bbstoreaccounts.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbstoreaccounts.8 docbook/bb-man.xsl docbook/bbstoreaccounts.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [ERROR ] Note: meta date : no date; using generated date bbstoreaccounts [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstoreaccounts [ERROR ] Note: Writing bbstoreaccounts.8 [INFO ] gzip man/bbstoreaccounts.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-certs.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbstored-certs.8 docbook/bb-man.xsl docbook/bbstored-certs.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [ERROR ] Note: meta date : no date; using generated date bbstored-certs [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored-certs [ERROR ] Note: Writing bbstored-certs.8 [INFO ] gzip man/bbstored-certs.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbstored-config.8 docbook/bb-man.xsl docbook/bbstored-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [ERROR ] Note: meta date : no date; using generated date bbstored-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored-config [ERROR ] Note: Writing bbstored-config.8 [INFO ] gzip man/bbstored-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] make -C docs man/raidfile-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/raidfile-config.8 docbook/bb-man.xsl docbook/raidfile-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [ERROR ] Note: meta date : no date; using generated date raidfile-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date raidfile-config [ERROR ] Note: Writing raidfile-config.8 [INFO ] gzip man/raidfile-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] make -C docs man/bbstored.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbstored.conf.5 docbook/bb-man.xsl docbook/bbstored.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [ERROR ] Note: meta date : no date; using generated date bbstored.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored.conf [ERROR ] Note: Writing bbstored.conf.5 [INFO ] gzip man/bbstored.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] make -C docs man/raidfile.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/raidfile.conf.5 docbook/bb-man.xsl docbook/raidfile.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [ERROR ] Note: meta date : no date; using generated date raidfile.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date raidfile.conf [ERROR ] Note: Writing raidfile.conf.5 [INFO ] gzip man/raidfile.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2537-backup-server-linux-gnu || mkdir parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2537-backup-server-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2537-backup-server-linux-gnu | gzip -9 - > boxbackup-trunk_2537-backup-server-linux-gnu.tgz ) [INFO ] (cd bin/bbstored; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] mkdir -p parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] (cd bin/bbstoreaccounts; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] mkdir -p parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] (cd docs; make bb-man.xsl; if [ ! -d man ]; then mkdir man; fi) [INFO ] `bb-man.xsl' is up to date. [INFO ] (cd docs; make bbstored.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [ERROR ] Note: Writing bbstored.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstoreaccounts.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [ERROR ] Note: Writing bbstoreaccounts.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored-certs.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [ERROR ] Note: Writing bbstored-certs.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored-config.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [ERROR ] Note: Writing bbstored-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] (cd docs; make raidfile-config.8) [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [ERROR ] Note: Writing raidfile-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored.conf.5) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [ERROR ] Note: Writing bbstored.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] (cd docs; make raidfile.conf.5) [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [ERROR ] Note: Writing raidfile.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 || mkdir parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2461-backup-server-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2461-backup-server-freebsd7.2 | gzip -9 - > boxbackup-trunk_2461-backup-server-freebsd7.2.tgz ) Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: **** TEST FAILURE: Condition [t1.HasExpired()] failed at testcommon.cpp:346 [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: [ ] imbalance or syntax error [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] FAILED: 1 tests failed (first at testcommon.cpp:346) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/crypto/testfiles [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/compress/testfiles [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] gmake[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] gmake[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 1024) == 1024] failed at testraidfile.cpp:733 [INFO ] ERROR: **** TEST FAILURE: Condition [pread->Read(buffer, 512) == 512] failed at testraidfile.cpp:738 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.Read(testbuff, 256) == 256] failed at testraidfile.cpp:187 [INFO ] ERROR: **** TEST FAILURE: Condition [readstream3.GetPosition() == pos] failed at testraidfile.cpp:189 [INFO ] ERROR: **** TEST FAILURE: Condition [::memcmp(((char*)data) + seekpos[p], testbuff, 256) == 0] failed at testraidfile.cpp:190 [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) (Failed to read parity RaidFile: testfiles/0_2/testdd.rf: No such file or directory (2)) at RaidFileRead.cpp(1274) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] FAILED: Exception caught: RaidFile OSError (Error when accessing an underlying file. Check file permissions allow files to be read and written in the configured raid directories.) [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19897): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19901): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 19908): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 19916): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function `void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: long long unsigned int format, int64_t arg (arg 2) [ERROR ] testbackupstore.cpp: In function `void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function `int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: long long unsigned int format, int64_t arg (arg 3) [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdiWARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] rs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 19983): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 20046): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20136): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: Object 0x8c is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: Object 0x8c is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x14 has wrong container ID. [INFO ] WARNING: Directory ID 0x1a references object 0x80 which does not exist. [INFO ] WARNING: Directory ID 0x1b has bad structure [INFO ] WARNING: Directory ID 0x1b has wrong size for object 0x84 [INFO ] WARNING: Object 0x50 is unattached. [INFO ] WARNING: Missing directory 0xe could be recreated. [INFO ] WARNING: Object 0x51 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x85: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x14 has wrong container ID. [INFO ] WARNING: Directory ID 0x1a references object 0x80 which does not exist. [INFO ] WARNING: Fixing directory ID 0x1a [INFO ] WARNING: Directory ID 0x1b has bad structure [INFO ] WARNING: Directory ID 0x1b has wrong size for object 0x84 [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x50 is unattached. [INFO ] WARNING: Recreating missing directory 0xe [INFO ] WARNING: Object 0x51 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x85: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o14 found [INFO ] WARNING: Directory ID 0x5 references object 0x28 which is already contained. [INFO ] WARNING: Object 0x64 is unattached. [INFO ] WARNING: Missing directory 0x14 could be recreated. [INFO ] WARNING: Object 0x65 is unattached. [INFO ] WARNING: Object 0x66 is unattached. [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x69 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o14 found, deleting [INFO ] WARNING: Directory ID 0x5 references object 0x28 which is already contained. [INFO ] WARNING: Fixing directory ID 0x5 [INFO ] WARNING: Object 0x64 is unattached. [INFO ] WARNING: Recreating missing directory 0x14 [INFO ] WARNING: Object 0x65 is unattached. [INFO ] WARNING: Object 0x66 is unattached. [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x69 is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xb is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xb is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o19 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o62 found [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0xb has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Missing directory 0x19 could be recreated. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o19 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o62 found, deleting [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0xb has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Recreating missing directory 0x19 [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 20129): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function `int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: long long int format, int64_t arg (arg 2) [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupstorepatch/testfiles [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 20297): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] cp: cannot access ../../../test/backupdiff/testfiles [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] gmake: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] gmake[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] gmake[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: WARNING: can't access testfiles [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20502): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20511): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: FAILED: 1 tests failed (first at testcommon.cpp:346) [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: FAILED: Exception caught: RaidFile OSError (Error when accessing an underlying file. Check file permissions allow files to be read and written in the configured raid directories.) [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] (cd bin/bbstored; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] mkdir -p parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] (cd bin/bbstoreaccounts; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] mkdir -p parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] (cd docs; make bb-man.xsl; if [ ! -d man ]; then mkdir man; fi) [INFO ] `bb-man.xsl' is up to date. [INFO ] (cd docs; make bbstored.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [ERROR ] Note: Writing bbstored.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstoreaccounts.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [ERROR ] Note: Writing bbstoreaccounts.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored-certs.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [ERROR ] Note: Writing bbstored-certs.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored-config.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [ERROR ] Note: Writing bbstored-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] (cd docs; make raidfile-config.8) [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [ERROR ] Note: Writing raidfile-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored.conf.5) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [ERROR ] Note: Writing bbstored.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] (cd docs; make raidfile.conf.5) [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [ERROR ] Note: Writing raidfile.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 || mkdir parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2455-backup-server-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2455-backup-server-freebsd7.2 | gzip -9 - > boxbackup-trunk_2455-backup-server-freebsd7.2.tgz ) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(99) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(145) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 26191): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 26194): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 26200): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 26207): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:436: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)?: [ERROR ] testbackupstore.cpp:488: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 26271): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 26290): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:411: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 26443): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../release/test/bbackupd/test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] WARNING: Exception thrown: ConnectionException(Conn_SocketWriteError) at SocketStream.cpp(312) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 26693): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 26700): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Wed May 4 22:15:14 2011 From: trac at boxbackup.org (Trac) Date: Wed, 04 May 2011 21:15:14 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2961] Trunk Message-ID: <20110504211514.1BDB418BF2C@www.boxbackup.org> Failed build of Box Backup [2961] --------------------------------------------------------------------- Changeset: 2961 - Committed by: chris Build Configuration: Trunk Build Platform: CentOS 5 x86_64 Build Slave: centos-vbox Build Number: 1766 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 28019): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 28022): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 28028): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 28034): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x1933c7f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 28272): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 28326): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 28484): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x4e3 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x74 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x10ad [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 6: main+0x18af [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x281 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o02 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/01/o03 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1d [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x65c [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x37c [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x16c [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x308 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xa31 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x245 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x9da [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x3df [INFO ] TRACE: Stack frame 9: main+0x18af [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 28479): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 28602): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 4 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 28808): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 28815): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-linux-gnu [INFO ] checking host system type... x86_64-unknown-linux-gnu [INFO ] checking target system type... x86_64-unknown-linux-gnu [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /bin/grep [INFO ] checking for egrep... /bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... -ledit [INFO ] checking editline/readline.h usability... yes [INFO ] checking editline/readline.h presence... yes [INFO ] checking for editline/readline.h... yes [INFO ] checking whether editline supports history... yes [INFO ] checking for editline/readline.h... (cached) yes [INFO ] checking for db.h... 4.4.20 [INFO ] checking for library containing Berkeley DB 4.4.20... -ldb [INFO ] configure: using Berkeley DB version 4.4.20 [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... yes [INFO ] checking execinfo.h presence... yes [INFO ] checking for execinfo.h... yes [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... yes [INFO ] checking sys/xattr.h presence... yes [INFO ] checking for sys/xattr.h... yes [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... yes [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... no [INFO ] checking for struct stat.st_mtimespec... no [INFO ] checking for struct stat.st_atim.tv_nsec... yes [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... no [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... no [INFO ] checking whether INFTIM is declared... no [INFO ] checking whether SO_PEERCRED is declared... yes [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... no [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... no [INFO ] checking sys/endian.h presence... no [INFO ] checking for sys/endian.h... no [INFO ] checking asm/byteorder.h usability... yes [INFO ] checking asm/byteorder.h presence... yes [INFO ] checking for asm/byteorder.h... yes [INFO ] checking for __cpu_to_be64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... yes [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... yes [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... no [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... yes [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... yes [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... yes [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... no [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... no [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... no [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... yes [INFO ] checking for llistxattr... yes [INFO ] checking for getxattr... yes [INFO ] checking for lgetxattr... yes [INFO ] checking for setxattr... yes [INFO ] checking for lsetxattr... yes [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... no [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'Linux'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Generating Compress exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating HTTP exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: yes [INFO ] Readline: yes [INFO ] Extended attributes: yes [INFO ] (cd bin/bbackupd; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] make[2]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../release/lib/win32/win32.a [INFO ] [RANLIB] ../../release/lib/win32/win32.a [INFO ] make[2]: Leaving directory `lib/win32' [INFO ] make[2]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [ERROR ] Timer.cpp: In static member function ?static void Timers::Cleanup()?: [ERROR ] Timer.cpp:86: warning: unused variable ?result? [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../release/lib/common/common.a [INFO ] [RANLIB] ../../release/lib/common/common.a [INFO ] make[2]: Leaving directory `lib/common' [INFO ] make[2]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../release/lib/compress/compress.a [INFO ] [RANLIB] ../../release/lib/compress/compress.a [INFO ] make[2]: Leaving directory `lib/compress' [INFO ] make[2]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../release/lib/crypto/crypto.a [INFO ] [RANLIB] ../../release/lib/crypto/crypto.a [INFO ] make[2]: Leaving directory `lib/crypto' [INFO ] make[2]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../release/lib/server/server.a [INFO ] [RANLIB] ../../release/lib/server/server.a [INFO ] make[2]: Leaving directory `lib/server' [INFO ] make[2]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../release/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../release/lib/backupclient/backupclient.a [INFO ] make[2]: Leaving directory `lib/backupclient' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../release/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] mkdir -p parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] (cd bin/bbackupquery; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../release/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] mkdir -p parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] (cd bin/bbackupctl; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../release/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] mkdir -p parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] make -C docs htmlguide/man-html/bbackupd.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupd.html docbook/bb-nochunk-book.xsl docbook/bbackupd.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2535-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.html parcels/boxbackup-trunk_2535-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupquery.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupquery.html docbook/bb-nochunk-book.xsl docbook/bbackupquery.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupquery [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupquery [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2535-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupquery.html parcels/boxbackup-trunk_2535-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupctl.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupctl.html docbook/bb-nochunk-book.xsl docbook/bbackupctl.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupctl [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupctl [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2535-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupctl.html parcels/boxbackup-trunk_2535-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupd-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupd-config.html docbook/bb-nochunk-book.xsl docbook/bbackupd-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd-config [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2535-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd-config.html parcels/boxbackup-trunk_2535-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupd.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupd.conf.html docbook/bb-nochunk-book.xsl docbook/bbackupd.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd.conf [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2535-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.conf.html parcels/boxbackup-trunk_2535-backup-client-linux-gnu/docs [INFO ] make -C docs man/bbackupd.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupd.8 docbook/bb-man.xsl docbook/bbackupd.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd [ERROR ] Note: meta date : no date; using generated date bbackupd [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd [ERROR ] Note: Writing bbackupd.8 [INFO ] gzip man/bbackupd.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.8.gz parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] make -C docs man/bbackupquery.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupquery.8 docbook/bb-man.xsl docbook/bbackupquery.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupquery [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupquery [ERROR ] Note: meta date : no date; using generated date bbackupquery [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupquery [ERROR ] Note: Writing bbackupquery.8 [INFO ] gzip man/bbackupquery.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupquery.8.gz parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] make -C docs man/bbackupctl.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupctl.8 docbook/bb-man.xsl docbook/bbackupctl.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupctl [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupctl [ERROR ] Note: meta date : no date; using generated date bbackupctl [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupctl [ERROR ] Note: Writing bbackupctl.8 [INFO ] gzip man/bbackupctl.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupctl.8.gz parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupd-config.8 docbook/bb-man.xsl docbook/bbackupd-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd-config [ERROR ] Note: meta date : no date; using generated date bbackupd-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd-config [ERROR ] Note: Writing bbackupd-config.8 [INFO ] gzip man/bbackupd-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd-config.8.gz parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupd.conf.5 docbook/bb-man.xsl docbook/bbackupd.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd.conf [ERROR ] Note: meta date : no date; using generated date bbackupd.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd.conf [ERROR ] Note: Writing bbackupd.conf.5 [INFO ] gzip man/bbackupd.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.conf.5.gz parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2535-backup-client-linux-gnu || mkdir parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] cp parcels/scripts/install-backup-client parcels/boxbackup-trunk_2535-backup-client-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2535-backup-client-linux-gnu | gzip -9 - > boxbackup-trunk_2535-backup-client-linux-gnu.tgz ) Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 31595): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 31598): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 31604): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 31610): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 31678): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 31722): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 31810): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x229 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0xa3f [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x5f [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x953 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 6: main+0xf02 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xf4 [INFO ] TRACE: Stack frame 8: __gxx_personality_v0+0x229 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3e is unattached. [INFO ] WARNING: Object 0x3e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x3c which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x42 [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x16 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x43: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o16 found [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o16 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x48 which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x73 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x74 is unattached. [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x13 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Corrupted file backup/01234567/o07 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Corrupted file backup/01234567/o07 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o71 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x71 which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0x13 has wrong container ID. [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x26 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x246 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x101 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x243 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x449 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x182 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x524 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x293 [INFO ] TRACE: Stack frame 9: main+0xf02 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x68 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 31805): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 31934): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 32140): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 32147): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] U . [INFO ] Checked out revision 2531. -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Wed May 4 22:19:36 2011 From: trac at boxbackup.org (Trac) Date: Wed, 04 May 2011 21:19:36 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2961] Trunk Message-ID: <20110504211936.3E65518C81F@www.boxbackup.org> Failed build of Box Backup [2961] --------------------------------------------------------------------- Changeset: 2961 - Committed by: chris Build Configuration: Trunk Build Platform: FreeBSD 8.0 amd64 Build Slave: www Build Number: 1768 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] Configuration.cpp: In member function 'bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [INFO ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [INFO ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [INFO ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [INFO ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] autogen_RaidFileException [INFO ] [CXX] RaidFileWrite [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 41982): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 41986): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 41993): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 42000): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [INFO ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] BackupCommands [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [INFO ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] bbstored [INFO ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8014030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 42219): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 42313): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 42484): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x5 references object 0x30 which does not exist. [INFO ] WARNING: Directory ID 0x7 has bad structure [INFO ] WARNING: Directory ID 0x7 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0xe has wrong container ID. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Missing directory 0x1c could be recreated. [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x5 references object 0x30 which does not exist. [INFO ] WARNING: Fixing directory ID 0x5 [INFO ] WARNING: Directory ID 0x7 has bad structure [INFO ] WARNING: Directory ID 0x7 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0xe has wrong container ID. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Recreating missing directory 0x1c [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/03/o02 found [INFO ] WARNING: Directory ID 0x14 references object 0x5e which is already contained. [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: Missing directory 0xe could be recreated. [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: Object 0x59 is unattached. [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/03/o02 found, deleting [INFO ] WARNING: Directory ID 0x14 references object 0x5e which is already contained. [INFO ] WARNING: Fixing directory ID 0x14 [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: Recreating missing directory 0xe [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: Object 0x59 is unattached. [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x11 is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x11 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o02 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/00/01/o01 found [INFO ] WARNING: Directory ID 0xc references object 0x4d which does not exist. [INFO ] WARNING: Directory ID 0x11 has wrong container ID. [INFO ] WARNING: File ID 0x5c has different container ID, probably moved [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Missing directory 0xa could be recreated. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o02 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/00/01/o01 found, deleting [INFO ] WARNING: Directory ID 0xc references object 0x4d which does not exist. [INFO ] WARNING: Fixing directory ID 0xc [INFO ] WARNING: Directory ID 0x11 has wrong container ID. [INFO ] WARNING: File ID 0x5c has different container ID, probably moved [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Recreating missing directory 0xa [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x5c has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x5c has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 42479): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 42596): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPRequest [INFO ] [CXX] S3Simulator [INFO ] [CXX] S3Client [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 42767): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 42775): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(99) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(145) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 926): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: .WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] done. [INFO ] Waiting for server to die (pid 930): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 936): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 942): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:436: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)?: [ERROR ] testbackupstore.cpp:488: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 1011): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 1024): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:411: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 1169): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../release/test/bbackupd/test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] WARNING: Exception thrown: ConnectionException(Conn_SocketWriteError) at SocketStream.cpp(312) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 1435): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 1442): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] U . [INFO ] Checked out revision 2532. Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 45491): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 45495): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 45502): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 45510): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 45569): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 45650): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 45722): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x6c is unattached. [INFO ] WARNING: Object 0x6c is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x6c is unattached. [INFO ] WARNING: Object 0x6c is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0xf references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x10 has bad structure [INFO ] WARNING: Directory ID 0x10 has wrong size for object 0x65 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Missing directory 0x7 could be recreated. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x66: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0xf references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0xf [INFO ] WARNING: Directory ID 0x10 has bad structure [INFO ] WARNING: Directory ID 0x10 has wrong size for object 0x65 [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Recreating missing directory 0x7 [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x66: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o17 found [INFO ] WARNING: Directory ID 0xa references object 0x39 which is already contained. [INFO ] WARNING: Object 0x82 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x83 is unattached. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: Object 0x86 is unattached. [INFO ] WARNING: Object 0x87 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o17 found, deleting [INFO ] WARNING: Directory ID 0xa references object 0x39 which is already contained. [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Object 0x82 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x83 is unattached. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: Object 0x86 is unattached. [INFO ] WARNING: Object 0x87 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x1c is unattached. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x1c is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o13 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o7f found [INFO ] WARNING: Directory ID 0x16 references object 0x7f which does not exist. [INFO ] WARNING: Directory ID 0x1c has wrong container ID. [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Missing directory 0x13 could be recreated. [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o13 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o7f found, deleting [INFO ] WARNING: Directory ID 0x16 references object 0x7f which does not exist. [INFO ] WARNING: Fixing directory ID 0x16 [INFO ] WARNING: Directory ID 0x1c has wrong container ID. [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Object 0x75 is unattached. [INFO ] WARNING: Recreating missing directory 0x13 [INFO ] WARNING: Object 0x76 is unattached. [INFO ] WARNING: Object 0x77 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 45716): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 45832): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPRequest [INFO ] [CXX] S3Simulator [INFO ] [CXX] S3Client [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 46013): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 46022): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] U . [INFO ] Checked out revision 2452. -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Wed May 4 22:23:31 2011 From: trac at boxbackup.org (Trac) Date: Wed, 04 May 2011 21:23:31 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2961] Trunk Message-ID: <20110504212331.C89B018C82A@www.boxbackup.org> Failed build of Box Backup [2961] --------------------------------------------------------------------- Changeset: 2961 - Committed by: chris Build Configuration: Trunk Build Platform: Mac OS X 10.6 Build Slave: jmac Build Number: 1770 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] [RANLIB] win32 [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/win32/win32.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [INFO ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] DebugPrintf [INFO ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [INFO ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [INFO ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [INFO ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] /usr/bin/ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [RANLIB] server [INFO ] ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 15820): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 15825): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 15832): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 15839): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [INFO ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 16154): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 16198): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] BackupQueries.cpp: In member function ?void BackupQueries::List(int64_t, const std::string&, const bool*, bool)?: [INFO ] BackupQueries.cpp:437: warning: format not a string literal and no format arguments [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 16392): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x5: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x5 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x6: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x6 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 16387): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 16522): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 20 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 16761): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 16768): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [ERROR ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [ERROR ] DebugMemLeakFinder.cpp:341: warning: unused variable 'rInfo' [ERROR ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [ERROR ] DebugMemLeakFinder.cpp:361: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [ERROR ] DebugMemLeakFinder.cpp:373: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [ERROR ] testcommon.cpp: In function 'int test(int, const char**)': [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(115) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(132) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(72) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (!spTimers) at Timer.cpp(42) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(72) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(427) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(582) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(90) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(115) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(132) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(72) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(42) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(72) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19878): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19882): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 19897): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 19909): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [ERROR ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [ERROR ] BackupStoreFileDiff.cpp:1031: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:435: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)': [ERROR ] testbackupstore.cpp:487: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8013030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 20140): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 20205): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: ...............ERROR: **** TEST FAILURE: Server didn't save PID file at Test.cpp:264 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] timed out! [INFO ] FAILED: 2 tests failed (first at Test.cpp:264) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:411: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 20431): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(290) [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 4 seconds [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/lib/intercept/intercept.a' is up to date. [INFO ] `../../debug/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../debug/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] `../../debug/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:390 [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20701): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] Starting server: ./test s3server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 20715): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:390) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:264) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:390) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(99) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(145) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13000): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13003): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 13009): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 13016): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:436: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)?: [ERROR ] testbackupstore.cpp:488: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 13080): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 13092): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:411: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 13237): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../release/test/bbackupd/test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] WARNING: Exception thrown: ConnectionException(Conn_SocketWriteError) at SocketStream.cpp(312) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13492): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 13500): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 7.5e-08 secs late [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../release/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 19557): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 19560): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 19566): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 19572): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 19645): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 19689): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 19781): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x5: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x5 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x6: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x6 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o17 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o17 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 19776): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 19911): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 14 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 20151): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 20158): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(116) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(133) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (!spTimers) at Timer.cpp(43) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(99) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(145) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19240): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19243): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 19249): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 19255): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:436: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)?: [ERROR ] testbackupstore.cpp:488: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0xfaa6f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 19492): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 19506): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:411: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 19723): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 11 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../debug/test/bbackupd/test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] WARNING: Exception thrown: ConnectionException(Conn_SocketWriteError) at SocketStream.cpp(312) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19951): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19958): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] (cd bin/bbstored; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] mkdir -p parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] (cd bin/bbstoreaccounts; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] mkdir -p parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] (cd docs; make bb-man.xsl; if [ ! -d man ]; then mkdir man; fi) [INFO ] `bb-man.xsl' is up to date. [INFO ] (cd docs; make bbstored.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [ERROR ] Note: Writing bbstored.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstoreaccounts.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [ERROR ] Note: Writing bbstoreaccounts.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored-certs.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [ERROR ] Note: Writing bbstored-certs.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored-config.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [ERROR ] Note: Writing bbstored-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] (cd docs; make raidfile-config.8) [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [ERROR ] Note: Writing raidfile-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored.conf.5) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [ERROR ] Note: Writing bbstored.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] (cd docs; make raidfile.conf.5) [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [ERROR ] Note: Writing raidfile.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 || mkdir parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2452-backup-server-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2452-backup-server-freebsd7.2 | gzip -9 - > boxbackup-trunk_2452-backup-server-freebsd7.2.tgz ) -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Wed May 4 22:27:17 2011 From: trac at boxbackup.org (Trac) Date: Wed, 04 May 2011 21:27:17 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2961] Trunk Message-ID: <20110504212718.946E918C834@www.boxbackup.org> Failed build of Box Backup [2961] --------------------------------------------------------------------- Changeset: 2961 - Committed by: chris Build Configuration: Trunk Build Platform: Debian 4.0 amd64 Build Slave: wildfire Build Number: 1767 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] BufferedWriteStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [ERROR ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [ERROR ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileModificationTime.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] GetLine.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] RateLimitingStream.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 30057): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 30061): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 30067): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 30073): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] BackupStoreRefCountDatabase.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [INFO ] [CXX] bbstored.cpp [ERROR ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [ERROR ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [ERROR ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [ERROR ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x206f870 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 30312): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 30357): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] CommandCompletion.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 30517): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x41 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x634 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x76 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x5b [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x15cb [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 6: main+0x1824 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x41 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o02 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x44f [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x754 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x32 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x3c0 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x1f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x7fa [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x444 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x1dc [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x397 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0xc49 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x2cd [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0xcd2 [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x4f0 [INFO ] TRACE: Stack frame 9: main+0x1824 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 30512): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 30636): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 12 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../debug/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 30869): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 30877): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking if non-aligned 16 bit word accesses fail... no [INFO ] checking if non-aligned 32 bit word accesses fail... no [INFO ] checking if non-aligned 64 bit word accesses fail... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no [INFO ] (cd bin/bbackupd; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] make[2]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../release/lib/win32/win32.a [INFO ] [RANLIB] ../../release/lib/win32/win32.a [INFO ] make[2]: Leaving directory `lib/win32' [INFO ] make[2]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [ERROR ] Timer.cpp: In static member function ?static void Timers::Cleanup()?: [ERROR ] Timer.cpp:86: warning: unused variable ?result? [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../release/lib/common/common.a [INFO ] [RANLIB] ../../release/lib/common/common.a [INFO ] make[2]: Leaving directory `lib/common' [INFO ] make[2]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../release/lib/compress/compress.a [INFO ] [RANLIB] ../../release/lib/compress/compress.a [INFO ] make[2]: Leaving directory `lib/compress' [INFO ] make[2]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../release/lib/crypto/crypto.a [INFO ] [RANLIB] ../../release/lib/crypto/crypto.a [INFO ] make[2]: Leaving directory `lib/crypto' [INFO ] make[2]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../release/lib/server/server.a [INFO ] [RANLIB] ../../release/lib/server/server.a [INFO ] make[2]: Leaving directory `lib/server' [INFO ] make[2]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../release/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../release/lib/backupclient/backupclient.a [INFO ] make[2]: Leaving directory `lib/backupclient' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../release/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] mkdir -p parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] (cd bin/bbackupquery; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../release/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] mkdir -p parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] (cd bin/bbackupctl; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../release/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] mkdir -p parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] make -C docs htmlguide/man-html/bbackupd.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupd.html docbook/bb-nochunk-book.xsl docbook/bbackupd.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2531-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.html parcels/boxbackup-trunk_2531-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupquery.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupquery.html docbook/bb-nochunk-book.xsl docbook/bbackupquery.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupquery [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupquery [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2531-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupquery.html parcels/boxbackup-trunk_2531-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupctl.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupctl.html docbook/bb-nochunk-book.xsl docbook/bbackupctl.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupctl [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupctl [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2531-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupctl.html parcels/boxbackup-trunk_2531-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupd-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupd-config.html docbook/bb-nochunk-book.xsl docbook/bbackupd-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd-config [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2531-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd-config.html parcels/boxbackup-trunk_2531-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupd.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupd.conf.html docbook/bb-nochunk-book.xsl docbook/bbackupd.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd.conf [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2531-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.conf.html parcels/boxbackup-trunk_2531-backup-client-linux-gnu/docs [INFO ] make -C docs man/bbackupd.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupd.8 docbook/bb-man.xsl docbook/bbackupd.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd [ERROR ] Note: meta date : no date; using generated date bbackupd [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd [ERROR ] Note: Writing bbackupd.8 [INFO ] gzip man/bbackupd.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.8.gz parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] make -C docs man/bbackupquery.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupquery.8 docbook/bb-man.xsl docbook/bbackupquery.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupquery [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupquery [ERROR ] Note: meta date : no date; using generated date bbackupquery [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupquery [ERROR ] Note: Writing bbackupquery.8 [INFO ] gzip man/bbackupquery.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupquery.8.gz parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] make -C docs man/bbackupctl.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupctl.8 docbook/bb-man.xsl docbook/bbackupctl.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupctl [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupctl [ERROR ] Note: meta date : no date; using generated date bbackupctl [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupctl [ERROR ] Note: Writing bbackupctl.8 [INFO ] gzip man/bbackupctl.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupctl.8.gz parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupd-config.8 docbook/bb-man.xsl docbook/bbackupd-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd-config [ERROR ] Note: meta date : no date; using generated date bbackupd-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd-config [ERROR ] Note: Writing bbackupd-config.8 [INFO ] gzip man/bbackupd-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd-config.8.gz parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupd.conf.5 docbook/bb-man.xsl docbook/bbackupd.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd.conf [ERROR ] Note: meta date : no date; using generated date bbackupd.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd.conf [ERROR ] Note: Writing bbackupd.conf.5 [INFO ] gzip man/bbackupd.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.conf.5.gz parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2531-backup-client-linux-gnu || mkdir parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] cp parcels/scripts/install-backup-client parcels/boxbackup-trunk_2531-backup-client-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2531-backup-client-linux-gnu | gzip -9 - > boxbackup-trunk_2531-backup-client-linux-gnu.tgz ) Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 1210): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 1213): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 1219): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 1248): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:440: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)?: [ERROR ] testbackupstore.cpp:524: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 1318): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 1363): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 1477): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x49 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long*, int)+0x8e8 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long*)+0x66 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x43 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x607 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 6: main+0x940 [INFO ] TRACE: Stack frame 7: __libc_start_main+0xe6 [INFO ] TRACE: Stack frame 8: std::ios_base::Init::~Init()+0x49 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x68 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x13 references object 0x62 which does not exist. [INFO ] WARNING: Fixing directory ID 0x13 [INFO ] WARNING: Directory ID 0x15 has bad structure [INFO ] WARNING: Directory ID 0x15 has wrong size for object 0x69 [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x6a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o09 found [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o09 found, deleting [INFO ] WARNING: Directory ID 0x1b references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x1b [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: Object 0x3c is unattached. [INFO ] WARNING: Object 0x3d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o11 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o32 found, deleting [INFO ] WARNING: Directory ID 0x7 references object 0x32 which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x3ac [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x809 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long, IOStream&)+0x31 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x257 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x23 [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x3c9 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long*, long*)+0x290 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long, IOStream&)+0x116 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long, std::string const&)+0x283 [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long)+0x4b4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x16a [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x28f [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x28c [INFO ] TRACE: Stack frame 9: main+0x940 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 1472): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:425: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 1596): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: *** No rule to make target `../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o', needed by `../../release/test/bbackupd/test'. Stop. [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 1808): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 1815): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] checking build system type... x86_64-unknown-linux-gnu [INFO ] checking host system type... x86_64-unknown-linux-gnu [INFO ] checking target system type... x86_64-unknown-linux-gnu [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /bin/grep [INFO ] checking for egrep... /bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... -ledit [INFO ] checking editline/readline.h usability... yes [INFO ] checking editline/readline.h presence... yes [INFO ] checking for editline/readline.h... yes [INFO ] checking whether editline supports history... yes [INFO ] checking for editline/readline.h... (cached) yes [INFO ] checking for db.h... 4.4.20 [INFO ] checking for library containing Berkeley DB 4.4.20... -ldb [INFO ] configure: using Berkeley DB version 4.4.20 [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... yes [INFO ] checking execinfo.h presence... yes [INFO ] checking for execinfo.h... yes [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... yes [INFO ] checking sys/xattr.h presence... yes [INFO ] checking for sys/xattr.h... yes [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... yes [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... no [INFO ] checking for struct stat.st_mtimespec... no [INFO ] checking for struct stat.st_atim.tv_nsec... yes [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... no [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... no [INFO ] checking whether INFTIM is declared... no [INFO ] checking whether SO_PEERCRED is declared... yes [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... no [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... no [INFO ] checking sys/endian.h presence... no [INFO ] checking for sys/endian.h... no [INFO ] checking asm/byteorder.h usability... yes [INFO ] checking asm/byteorder.h presence... yes [INFO ] checking for asm/byteorder.h... yes [INFO ] checking for __cpu_to_be64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... yes [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... yes [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... no [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... yes [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... yes [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... yes [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... no [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... no [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... no [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... yes [INFO ] checking for llistxattr... yes [INFO ] checking for getxattr... yes [INFO ] checking for lgetxattr... yes [INFO ] checking for setxattr... yes [INFO ] checking for lsetxattr... yes [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... no [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'Linux'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Generating Compress exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating HTTP exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: yes [INFO ] Readline: yes [INFO ] Extended attributes: yes [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcommon [ERROR ] testcommon.cpp: In function 'int test(int, const char**)': [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(427) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(582) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(90) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 30954): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 30958): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 30965): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 30983): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:435: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)': [ERROR ] testbackupstore.cpp:487: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 31057): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 31152): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:411: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 31311): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(290) [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 1 seconds [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/lib/intercept/intercept.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [ERROR ] HTTPRequest.cpp: In member function 'bool HTTPRequest::Receive(IOStreamGetLine&, int)': [ERROR ] HTTPRequest.cpp:130: warning: comparison is always false due to limited range of data type [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] S3Client [INFO ] [CXX] autogen_HTTPException [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:390 [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 31568): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] Starting server: ./test s3server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 31581): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:390) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:390) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 23 19:44:00 2011 From: trac at boxbackup.org (Trac) Date: Mon, 23 May 2011 18:44:00 -0000 Subject: [Box Backup-commit] #59: Inconsistent treatment of NotifyScript between Box Backup and Boxi In-Reply-To: <042.5347e6a7b9901488a701fc1db410ce7d@boxbackup.org> References: <042.5347e6a7b9901488a701fc1db410ce7d@boxbackup.org> Message-ID: <051.8f7cb9c65108654eaa4dfecdec34bad5@boxbackup.org> #59: Inconsistent treatment of NotifyScript between Box Backup and Boxi ----------------------+----------------------------------------------------- Reporter: achim | Owner: ben Type: defect | Status: new Priority: normal | Milestone: Component: bbackupd | Version: 0.11rc2 Keywords: | ----------------------+----------------------------------------------------- Comment(by achim): Any news on this? It is still an issue in the latest (VSS) trunk. The fix/workaround is pretty easy (see above), and until this is fixed, we cannot put the bbackupd.conf file in a directory that contains a space in its name: a major limitatin, given that "Documents and Settings" should be the default folder for bbackupd.conf. Thanks! -- Ticket URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Mon May 23 19:46:44 2011 From: trac at boxbackup.org (Trac) Date: Mon, 23 May 2011 18:46:44 -0000 Subject: [Box Backup-commit] #67: Add mutexes for Win32 (client) to enable detection of running instance during install/uninstall In-Reply-To: <042.9f9065f51ac5d5eb4f39107b8362ce1e@boxbackup.org> References: <042.9f9065f51ac5d5eb4f39107b8362ce1e@boxbackup.org> Message-ID: <051.079b6feba230aa87eb050853468c0289@boxbackup.org> #67: Add mutexes for Win32 (client) to enable detection of running instance during install/uninstall -------------------------+-------------------------------------------------- Reporter: achim | Owner: chris Type: enhancement | Status: assigned Priority: normal | Milestone: Component: bbackupd | Version: trunk Keywords: | -------------------------+-------------------------------------------------- Comment(by achim): Is the proposed solution acceptable? Mutexes are used under Windows standard installers (Inno Setup, NSIS, WiX) to detect a running application and ask the user to close it if they want to re-install/uninstall/upgrade. No other platform will require this, so a simple ifdef should be OK. Thanks. -- Ticket URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From subversion at boxbackup.org Tue May 24 14:33:51 2011 From: subversion at boxbackup.org (subversion at boxbackup.org) Date: Tue, 24 May 2011 14:33:51 +0100 (BST) Subject: [Box Backup-commit] COMMIT r2962 - box/trunk/lib/win32 Message-ID: <20110524133351.0D4DE18A01A@www.boxbackup.org> Author: chris Date: 2011-05-24 14:33:50 +0100 (Tue, 24 May 2011) New Revision: 2962 Modified: box/trunk/lib/win32/emu.cpp Log: Blind fix for displaying error message as well as code when emu unicode conversion fails. Modified: box/trunk/lib/win32/emu.cpp =================================================================== --- box/trunk/lib/win32/emu.cpp 2011-05-04 20:34:39 UTC (rev 2961) +++ box/trunk/lib/win32/emu.cpp 2011-05-24 13:33:50 UTC (rev 2962) @@ -243,7 +243,7 @@ { ::syslog(LOG_WARNING, "Failed to convert wide string to narrow: " - "error %d", GetLastError()); + "%s", GetErrorMessage(GetLastError()).c_str()); errno = EINVAL; return NULL; } @@ -275,7 +275,7 @@ { ::syslog(LOG_WARNING, "Failed to convert wide string to narrow: " - "error %i", GetLastError()); + "%s", GetErrorMessage(GetLastError()).c_str()); errno = EACCES; delete [] buffer; return NULL; @@ -304,7 +304,7 @@ { ::syslog(LOG_WARNING, "Failed to convert wide string to narrow: " - "error %d", GetLastError()); + "%s", GetErrorMessage(GetLastError()).c_str()); errno = EINVAL; return false; } @@ -336,7 +336,7 @@ { ::syslog(LOG_WARNING, "Failed to convert wide string to narrow: " - "error %i", GetLastError()); + "%s", GetErrorMessage(GetLastError()).c_str()); errno = EACCES; delete [] buffer; return false; From trac at boxbackup.org Tue May 24 14:52:02 2011 From: trac at boxbackup.org (Trac) Date: Tue, 24 May 2011 13:52:02 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2962] Trunk Message-ID: <20110524135202.A80C018EE5B@www.boxbackup.org> Failed build of Box Backup [2962] --------------------------------------------------------------------- Changeset: 2962 - Committed by: chris Build Configuration: Trunk Build Platform: FreeBSD 8.0 amd64 Build Slave: www Build Number: 1775 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugAssertFailed [INFO ] Configuration.cpp: In member function 'bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [INFO ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] [CXX] DebugPrintf [INFO ] [CXX] ExcludeList [INFO ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [INFO ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [INFO ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [INFO ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] Test [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] autogen_RaidFileException [INFO ] [CXX] RaidFileWrite [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 10776): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 10779): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 10786): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 10794): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [INFO ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [INFO ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] bbstored [INFO ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8014030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 11011): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 11079): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11243): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Object 0x34 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Object 0x34 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x30 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x12 has wrong container ID. [INFO ] WARNING: Object 0x4e is unattached. [INFO ] WARNING: Missing directory 0xc could be recreated. [INFO ] WARNING: Object 0x4f is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x30 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x12 has wrong container ID. [INFO ] WARNING: Object 0x4e is unattached. [INFO ] WARNING: Recreating missing directory 0xc [INFO ] WARNING: Object 0x4f is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/00/01/o02 found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which is already contained. [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: Missing directory 0x12 could be recreated. [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x69 is unattached. [INFO ] WARNING: Object 0x6a is unattached. [INFO ] WARNING: Object 0x6b is unattached. [INFO ] WARNING: Object 0x6c is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/00/01/o02 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which is already contained. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Object 0x67 is unattached. [INFO ] WARNING: Recreating missing directory 0x12 [INFO ] WARNING: Object 0x68 is unattached. [INFO ] WARNING: Object 0x69 is unattached. [INFO ] WARNING: Object 0x6a is unattached. [INFO ] WARNING: Object 0x6b is unattached. [INFO ] WARNING: Object 0x6c is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x1b is unattached. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x1b is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/01/01/o02 found [INFO ] WARNING: Directory ID 0x10 references object 0x5e which does not exist. [INFO ] WARNING: Directory ID 0x1b has wrong container ID. [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/01/01/o02 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x5e which does not exist. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Directory ID 0x1b has wrong container ID. [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 11238): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 11364): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPResponse [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11538): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 11547): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking if non-aligned 16 bit word accesses fail... no [INFO ] checking if non-aligned 32 bit word accesses fail... no [INFO ] checking if non-aligned 64 bit word accesses fail... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 14269): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 14272): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 14279): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 14287): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 14341): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 14402): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 14474): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3a is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3a is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x8 references object 0x30 which does not exist. [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x3b [INFO ] WARNING: Directory ID 0x1b has wrong container ID. [INFO ] WARNING: Object 0x70 is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x71 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3c: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x8 references object 0x30 which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0xa has bad structure [INFO ] WARNING: Directory ID 0xa has wrong size for object 0x3b [INFO ] WARNING: Fixing directory ID 0xa [INFO ] WARNING: Directory ID 0x1b has wrong container ID. [INFO ] WARNING: Object 0x70 is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x71 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3c: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o1b found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1b could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: Object 0x86 is unattached. [INFO ] WARNING: Object 0x87 is unattached. [INFO ] WARNING: Object 0x88 is unattached. [INFO ] WARNING: Object 0x89 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o1b found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1b [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: Object 0x86 is unattached. [INFO ] WARNING: Object 0x87 is unattached. [INFO ] WARNING: Object 0x88 is unattached. [INFO ] WARNING: Object 0x89 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o0d found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o81 found [INFO ] WARNING: Directory ID 0x1a references object 0x81 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: Missing directory 0xd could be recreated. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Object 0x49 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o0d found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o81 found, deleting [INFO ] WARNING: Directory ID 0x1a references object 0x81 which does not exist. [INFO ] WARNING: Fixing directory ID 0x1a [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: Recreating missing directory 0xd [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Object 0x49 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 14468): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 14587): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPResponse [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Connection reset by peer (54) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 14756): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 14765): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking if non-aligned 16 bit word accesses fail... no [INFO ] checking if non-aligned 32 bit word accesses fail... no [INFO ] checking if non-aligned 64 bit word accesses fail... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Tue May 24 14:53:20 2011 From: trac at boxbackup.org (Trac) Date: Tue, 24 May 2011 13:53:20 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2962] Trunk Message-ID: <20110524135320.855CA18EE67@www.boxbackup.org> Failed build of Box Backup [2962] --------------------------------------------------------------------- Changeset: 2962 - Committed by: chris Build Configuration: Trunk Build Platform: Mac OS X 10.6 Build Slave: jmac Build Number: 1777 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] [RANLIB] win32 [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/win32/win32.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [INFO ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [INFO ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [INFO ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [INFO ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 4.6055e-05 secs late [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] /usr/bin/ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [RANLIB] server [INFO ] ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 73021): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 73026): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 73032): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 73038): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [INFO ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreObjectDump [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 73353): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 73397): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] BackupQueries.cpp: In member function ?void BackupQueries::List(int64_t, const std::string&, const bool*, bool)?: [INFO ] BackupQueries.cpp:437: warning: format not a string literal and no format arguments [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 73596): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x5: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x5 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x6: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x6 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 73591): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 73723): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 4 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 73959): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 73968): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] (cd bin/bbackupd; make -D RELEASE) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [ERROR ] Timer.cpp: In static member function 'static void Timers::Cleanup()': [ERROR ] Timer.cpp:85: warning: unused variable 'result' [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] mkdir -p parcels/boxbackup-trunk_2446-backup-client-freebsd7.2 [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2446-backup-client-freebsd7.2 [INFO ] (cd bin/bbackupquery; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] BackupQueries [ERROR ] BackupQueries.cpp: In member function 'void BackupQueries::Compare(int64_t, const std::string&, const std::string&, BoxBackupCompareParams&)': [ERROR ] BackupQueries.cpp:1731: error: no matching function for call to 'FileStream::CompareWith(std::auto_ptr&, int)' [ERROR ] ../../lib/common/FileStream.h:59: note: candidates are: bool FileStream::CompareWith(IOStream&, int) [INFO ] *** Error code 1 [INFO ] Stop in bin/bbackupquery. [INFO ] *** Error code 1 [INFO ] Stop in . [INFO ] U . [INFO ] Checked out revision 2445. Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 3.611e-05 secs late [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../release/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 76754): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 76757): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 76763): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 76769): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to lock account for housekeeping, still trying... [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 76842): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 76887): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 76979): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x5: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x5 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x6: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x6 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o17 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o17 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 76974): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 77109): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 4 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 77347): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 77354): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(99) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 16521): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 16524): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 16530): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 16537): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:436: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)?: [ERROR ] testbackupstore.cpp:488: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 16603): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 16616): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:411: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 16764): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../release/test/bbackupd/test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] WARNING: Exception thrown: ConnectionException(Conn_SocketWriteError) at SocketStream.cpp(312) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17020): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 17027): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] U . [INFO ] Checked out revision 2525. -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From subversion at boxbackup.org Tue May 24 16:08:59 2011 From: subversion at boxbackup.org (subversion at boxbackup.org) Date: Tue, 24 May 2011 16:08:59 +0100 (BST) Subject: [Box Backup-commit] COMMIT r2963 - in box/trunk: . lib/backupclient lib/backupstore Message-ID: <20110524150859.788F918EF4C@www.boxbackup.org> Author: chris Date: 2011-05-24 16:08:59 +0100 (Tue, 24 May 2011) New Revision: 2963 Added: box/trunk/lib/backupstore/BackupStoreFileCmbDiff.cpp box/trunk/lib/backupstore/BackupStoreFileCmbIdx.cpp box/trunk/lib/backupstore/BackupStoreFileCombine.cpp box/trunk/lib/backupstore/BackupStoreFileDiff.cpp Removed: box/trunk/lib/backupclient/BackupStoreFileCmbDiff.cpp box/trunk/lib/backupclient/BackupStoreFileCmbIdx.cpp box/trunk/lib/backupclient/BackupStoreFileCombine.cpp box/trunk/lib/backupclient/BackupStoreFileDiff.cpp Modified: box/trunk/modules.txt Log: Move remaining parts of BackupStoreFile into lib/backupstore, and fix module dependencies to fail if anything else required by bbstored is still in lib/backupclient instead of lib/backupstore. Deleted: box/trunk/lib/backupclient/BackupStoreFileCmbDiff.cpp =================================================================== --- box/trunk/lib/backupclient/BackupStoreFileCmbDiff.cpp 2011-05-24 13:33:50 UTC (rev 2962) +++ box/trunk/lib/backupclient/BackupStoreFileCmbDiff.cpp 2011-05-24 15:08:59 UTC (rev 2963) @@ -1,326 +0,0 @@ -// -------------------------------------------------------------------------- -// -// File -// Name: BackupStoreFileCmbDiff.cpp -// Purpose: Combine two diffs together -// Created: 12/7/04 -// -// -------------------------------------------------------------------------- - -#include "Box.h" - -#include -#include - -#include "BackupStoreFile.h" -#include "BackupStoreFileWire.h" -#include "BackupStoreObjectMagic.h" -#include "BackupStoreException.h" -#include "BackupStoreConstants.h" -#include "BackupStoreFilename.h" - -#include "MemLeakFindOn.h" - -// -------------------------------------------------------------------------- -// -// Function -// Name: BackupStoreFile::CombineDiffs(IOStream &, IOStream &, IOStream &rOut) -// Purpose: Given two diffs, combine them into a single diff, to produce a diff -// which, combined with the original file, creates the result of applying -// rDiff, then rDiff2. Two opens of rDiff2 are required -// Created: 12/7/04 -// -// -------------------------------------------------------------------------- -void BackupStoreFile::CombineDiffs(IOStream &rDiff1, IOStream &rDiff2, IOStream &rDiff2b, IOStream &rOut) -{ - // Skip header of first diff, record where the data starts, and skip to the index - int64_t diff1DataStarts = 0; - { - // Read the header for the From file - file_StreamFormat diff1Hdr; - if(!rDiff1.ReadFullBuffer(&diff1Hdr, sizeof(diff1Hdr), 0)) - { - THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) - } - if(ntohl(diff1Hdr.mMagicValue) != OBJECTMAGIC_FILE_MAGIC_VALUE_V1) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - // Skip over the filename and attributes of the From file - // BLOCK - { - BackupStoreFilename filename2; - filename2.ReadFromStream(rDiff1, IOStream::TimeOutInfinite); - int32_t size_s; - if(!rDiff1.ReadFullBuffer(&size_s, sizeof(size_s), 0 /* not interested in bytes read if this fails */)) - { - THROW_EXCEPTION(CommonException, StreamableMemBlockIncompleteRead) - } - int size = ntohl(size_s); - // Skip forward the size - rDiff1.Seek(size, IOStream::SeekType_Relative); - } - // Record position - diff1DataStarts = rDiff1.GetPosition(); - // Skip to index - rDiff1.Seek(0 - (((box_ntoh64(diff1Hdr.mNumBlocks)) * sizeof(file_BlockIndexEntry)) + sizeof(file_BlockIndexHeader)), IOStream::SeekType_End); - } - - // Read the index of the first diff - // Header first - file_BlockIndexHeader diff1IdxHdr; - if(!rDiff1.ReadFullBuffer(&diff1IdxHdr, sizeof(diff1IdxHdr), 0)) - { - THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) - } - if(ntohl(diff1IdxHdr.mMagicValue) != OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - int64_t diff1NumBlocks = box_ntoh64(diff1IdxHdr.mNumBlocks); - // Allocate some memory - int64_t *diff1BlockStartPositions = (int64_t*)::malloc((diff1NumBlocks + 1) * sizeof(int64_t)); - if(diff1BlockStartPositions == 0) - { - throw std::bad_alloc(); - } - - // Buffer data - void *buffer = 0; - int bufferSize = 0; - - try - { - // Then the entries: - // For each entry, want to know if it's in the file, and if so, how big it is. - // We'll store this as an array of file positions in the file, with an additioal - // entry on the end so that we can work out the length of the last block. - // If an entry isn't in the file, then store 0 - (position in other file). - int64_t diff1Position = diff1DataStarts; - for(int64_t b = 0; b < diff1NumBlocks; ++b) - { - file_BlockIndexEntry e; - if(!rDiff1.ReadFullBuffer(&e, sizeof(e), 0)) - { - THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) - } - - // Where's the block? - int64_t blockEn = box_ntoh64(e.mEncodedSize); - if(blockEn <= 0) - { - // Just store the negated block number - diff1BlockStartPositions[b] = blockEn; - } - else - { - // Block is present in this file - diff1BlockStartPositions[b] = diff1Position; - diff1Position += blockEn; - } - } - - // Finish off the list, so the last entry can have it's size calcuated. - diff1BlockStartPositions[diff1NumBlocks] = diff1Position; - - // Now read the second diff's header, copying it to the out file - file_StreamFormat diff2Hdr; - if(!rDiff2.ReadFullBuffer(&diff2Hdr, sizeof(diff2Hdr), 0)) - { - THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) - } - if(ntohl(diff2Hdr.mMagicValue) != OBJECTMAGIC_FILE_MAGIC_VALUE_V1) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - // Copy - rOut.Write(&diff2Hdr, sizeof(diff2Hdr)); - // Copy over filename and attributes - // BLOCK - { - BackupStoreFilename filename; - filename.ReadFromStream(rDiff2, IOStream::TimeOutInfinite); - filename.WriteToStream(rOut); - StreamableMemBlock attr; - attr.ReadFromStream(rDiff2, IOStream::TimeOutInfinite); - attr.WriteToStream(rOut); - } - - // Get to the index of rDiff2b, and read the header - MoveStreamPositionToBlockIndex(rDiff2b); - file_BlockIndexHeader diff2IdxHdr; - if(!rDiff2b.ReadFullBuffer(&diff2IdxHdr, sizeof(diff2IdxHdr), 0)) - { - THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) - } - if(ntohl(diff2IdxHdr.mMagicValue) != OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - int64_t diff2NumBlocks = box_ntoh64(diff2IdxHdr.mNumBlocks); - int64_t diff2IndexEntriesStart = rDiff2b.GetPosition(); - - // Then read all the entries - int64_t diff2FilePosition = rDiff2.GetPosition(); - for(int64_t b = 0; b < diff2NumBlocks; ++b) - { - file_BlockIndexEntry e; - if(!rDiff2b.ReadFullBuffer(&e, sizeof(e), 0)) - { - THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) - } - - // What do to next about copying data - bool copyBlock = false; - int copySize = 0; - int64_t copyFrom = 0; - bool fromFileDiff1 = false; - - // Where's the block? - int64_t blockEn = box_ntoh64(e.mEncodedSize); - if(blockEn > 0) - { - // Block is present in this file -- copy to out - copyBlock = true; - copyFrom = diff2FilePosition; - copySize = (int)blockEn; - - // Move pointer onwards - diff2FilePosition += blockEn; - } - else - { - // Block isn't present here -- is it present in the old one? - int64_t blockIndex = 0 - blockEn; - if(blockIndex < 0 || blockIndex > diff1NumBlocks) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - if(diff1BlockStartPositions[blockIndex] > 0) - { - // Block is in the old diff file, copy it across - copyBlock = true; - copyFrom = diff1BlockStartPositions[blockIndex]; - int nb = blockIndex + 1; - while(diff1BlockStartPositions[nb] <= 0) - { - // This is safe, because the last entry will terminate it properly! - ++nb; - ASSERT(nb <= diff1NumBlocks); - } - copySize = diff1BlockStartPositions[nb] - copyFrom; - fromFileDiff1 = true; - } - } - //TRACE4("%d %d %lld %d\n", copyBlock, copySize, copyFrom, fromFileDiff1); - - // Copy data to the output file? - if(copyBlock) - { - // Allocate enough space - if(bufferSize < copySize || buffer == 0) - { - // Free old block - if(buffer != 0) - { - ::free(buffer); - buffer = 0; - bufferSize = 0; - } - // Allocate new block - buffer = ::malloc(copySize); - if(buffer == 0) - { - throw std::bad_alloc(); - } - bufferSize = copySize; - } - ASSERT(bufferSize >= copySize); - - // Load in the data - if(fromFileDiff1) - { - rDiff1.Seek(copyFrom, IOStream::SeekType_Absolute); - if(!rDiff1.ReadFullBuffer(buffer, copySize, 0)) - { - THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) - } - } - else - { - rDiff2.Seek(copyFrom, IOStream::SeekType_Absolute); - if(!rDiff2.ReadFullBuffer(buffer, copySize, 0)) - { - THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) - } - } - // Write out data - rOut.Write(buffer, copySize); - } - } - - // Write the modified header - diff2IdxHdr.mOtherFileID = diff1IdxHdr.mOtherFileID; - rOut.Write(&diff2IdxHdr, sizeof(diff2IdxHdr)); - - // Then we'll write out the index, reading the data again - rDiff2b.Seek(diff2IndexEntriesStart, IOStream::SeekType_Absolute); - for(int64_t b = 0; b < diff2NumBlocks; ++b) - { - file_BlockIndexEntry e; - if(!rDiff2b.ReadFullBuffer(&e, sizeof(e), 0)) - { - THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) - } - - // Where's the block? - int64_t blockEn = box_ntoh64(e.mEncodedSize); - - // If it's not in this file, it needs modification... - if(blockEn <= 0) - { - int64_t blockIndex = 0 - blockEn; - // In another file. Need to translate this against the other diff - if(diff1BlockStartPositions[blockIndex] > 0) - { - // Block is in the first diff file, stick in size - int nb = blockIndex + 1; - while(diff1BlockStartPositions[nb] <= 0) - { - // This is safe, because the last entry will terminate it properly! - ++nb; - ASSERT(nb <= diff1NumBlocks); - } - int64_t size = diff1BlockStartPositions[nb] - diff1BlockStartPositions[blockIndex]; - e.mEncodedSize = box_hton64(size); - } - else - { - // Block in the original file, use translated value - e.mEncodedSize = box_hton64(diff1BlockStartPositions[blockIndex]); - } - } - - // Write entry - rOut.Write(&e, sizeof(e)); - } - } - catch(...) - { - // clean up - ::free(diff1BlockStartPositions); - if(buffer != 0) - { - ::free(buffer); - } - throw; - } - - // Clean up allocated memory - ::free(diff1BlockStartPositions); - if(buffer != 0) - { - ::free(buffer); - } -} - Deleted: box/trunk/lib/backupclient/BackupStoreFileCmbIdx.cpp =================================================================== --- box/trunk/lib/backupclient/BackupStoreFileCmbIdx.cpp 2011-05-24 13:33:50 UTC (rev 2962) +++ box/trunk/lib/backupclient/BackupStoreFileCmbIdx.cpp 2011-05-24 15:08:59 UTC (rev 2963) @@ -1,324 +0,0 @@ -// -------------------------------------------------------------------------- -// -// File -// Name: BackupStoreFileCmbIdx.cpp -// Purpose: Combine indicies of a delta file and the file it's a diff from. -// Created: 8/7/04 -// -// -------------------------------------------------------------------------- - -#include "Box.h" - -#include -#include - -#include "BackupStoreFile.h" -#include "BackupStoreFileWire.h" -#include "BackupStoreObjectMagic.h" -#include "BackupStoreException.h" -#include "BackupStoreConstants.h" -#include "BackupStoreFilename.h" - -#include "MemLeakFindOn.h" - -// Hide from outside world -namespace -{ - -class BSFCombinedIndexStream : public IOStream -{ -public: - BSFCombinedIndexStream(IOStream *pDiff); - ~BSFCombinedIndexStream(); - - virtual int Read(void *pBuffer, int NBytes, int Timeout = IOStream::TimeOutInfinite); - virtual void Write(const void *pBuffer, int NBytes); - virtual bool StreamDataLeft(); - virtual bool StreamClosed(); - virtual void Initialise(IOStream &rFrom); - -private: - IOStream *mpDiff; - bool mIsInitialised; - bool mHeaderWritten; - file_BlockIndexHeader mHeader; - int64_t mNumEntriesToGo; - int64_t mNumEntriesInFromFile; - int64_t *mFromBlockSizes; // NOTE: Entries in network byte order -}; - -}; - -// -------------------------------------------------------------------------- -// -// Function -// Name: BackupStoreFile::CombineFileIndices(IOStream &, IOStream &, bool) -// Purpose: Given a diff file and the file it's a diff from, return a stream from which -// can be read the index of the combined file, without actually combining them. -// The stream of the diff must have a lifetime greater than or equal to the -// lifetime of the returned stream object. The full "from" file stream -// only needs to exist during the actual function call. -// If you pass in dodgy files which aren't related, then you will either -// get an error or bad results. So don't do that. -// If DiffIsIndexOnly is true, then rDiff is assumed to be a stream positioned -// at the beginning of the block index. Similarly for FromIsIndexOnly. -// WARNING: Reads of the returned streams with buffer sizes less than 64 bytes -// will not return any data. -// Created: 8/7/04 -// -// -------------------------------------------------------------------------- -std::auto_ptr BackupStoreFile::CombineFileIndices(IOStream &rDiff, IOStream &rFrom, bool DiffIsIndexOnly, bool FromIsIndexOnly) -{ - // Reposition file pointers? - if(!DiffIsIndexOnly) - { - MoveStreamPositionToBlockIndex(rDiff); - } - if(!FromIsIndexOnly) - { - MoveStreamPositionToBlockIndex(rFrom); - } - - // Create object - std::auto_ptr stream(new BSFCombinedIndexStream(&rDiff)); - - // Initialise it - ((BSFCombinedIndexStream *)stream.get())->Initialise(rFrom); - - // And return the stream - return stream; -} - - -// -------------------------------------------------------------------------- -// -// Function -// Name: BSFCombinedIndexStream::BSFCombinedIndexStream() -// Purpose: Private class. Constructor. -// Created: 8/7/04 -// -// -------------------------------------------------------------------------- -BSFCombinedIndexStream::BSFCombinedIndexStream(IOStream *pDiff) - : mpDiff(pDiff), - mIsInitialised(false), - mHeaderWritten(false), - mNumEntriesToGo(0), - mNumEntriesInFromFile(0), - mFromBlockSizes(0) -{ - ASSERT(mpDiff != 0); -} - - -// -------------------------------------------------------------------------- -// -// Function -// Name: BSFCombinedIndexStream::~BSFCombinedIndexStream() -// Purpose: Private class. Destructor. -// Created: 8/7/04 -// -// -------------------------------------------------------------------------- -BSFCombinedIndexStream::~BSFCombinedIndexStream() -{ - if(mFromBlockSizes != 0) - { - ::free(mFromBlockSizes); - mFromBlockSizes = 0; - } -} - - -// -------------------------------------------------------------------------- -// -// Function -// Name: BSFCombinedIndexStream::Initialise(IOStream &) -// Purpose: Private class. Initalise from the streams (diff passed in constructor). -// Both streams must have file pointer positioned at the block index. -// Created: 8/7/04 -// -// -------------------------------------------------------------------------- -void BSFCombinedIndexStream::Initialise(IOStream &rFrom) -{ - // Paranoia is good. - if(mIsInitialised) - { - THROW_EXCEPTION(BackupStoreException, Internal) - } - - // Look at the diff file: Read in the header - if(!mpDiff->ReadFullBuffer(&mHeader, sizeof(mHeader), 0)) - { - THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) - } - if(ntohl(mHeader.mMagicValue) != OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - - // Read relevant data. - mNumEntriesToGo = box_ntoh64(mHeader.mNumBlocks); - - // Adjust a bit to reflect the fact it's no longer a diff - mHeader.mOtherFileID = box_hton64(0); - - // Now look at the from file: Read header - file_BlockIndexHeader fromHdr; - if(!rFrom.ReadFullBuffer(&fromHdr, sizeof(fromHdr), 0)) - { - THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) - } - if(ntohl(fromHdr.mMagicValue) != OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - - // Then... allocate memory for the list of sizes - mNumEntriesInFromFile = box_ntoh64(fromHdr.mNumBlocks); - mFromBlockSizes = (int64_t*)::malloc(mNumEntriesInFromFile * sizeof(int64_t)); - if(mFromBlockSizes == 0) - { - throw std::bad_alloc(); - } - - // And read them all in! - for(int64_t b = 0; b < mNumEntriesInFromFile; ++b) - { - file_BlockIndexEntry e; - if(!rFrom.ReadFullBuffer(&e, sizeof(e), 0)) - { - THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) - } - - // Check that the from file isn't a delta in itself - if(box_ntoh64(e.mEncodedSize) <= 0) - { - THROW_EXCEPTION(BackupStoreException, OnCombineFromFileIsIncomplete) - } - - // Store size (in network byte order) - mFromBlockSizes[b] = e.mEncodedSize; - } - - // Flag as initialised - mIsInitialised = true; -} - - -// -------------------------------------------------------------------------- -// -// Function -// Name: BSFCombinedIndexStream::Read(void *, int, int) -// Purpose: Private class. As interface. -// Created: 8/7/04 -// -// -------------------------------------------------------------------------- -int BSFCombinedIndexStream::Read(void *pBuffer, int NBytes, int Timeout) -{ - // Paranoia is good. - if(!mIsInitialised || mFromBlockSizes == 0 || mpDiff == 0) - { - THROW_EXCEPTION(BackupStoreException, Internal) - } - - int written = 0; - - // Header output yet? - if(!mHeaderWritten) - { - // Enough space? - if(NBytes < (int)sizeof(mHeader)) return 0; - - // Copy in - ::memcpy(pBuffer, &mHeader, sizeof(mHeader)); - NBytes -= sizeof(mHeader); - written += sizeof(mHeader); - - // Flag it's done - mHeaderWritten = true; - } - - // How many entries can be written? - int entriesToWrite = NBytes / sizeof(file_BlockIndexEntry); - if(entriesToWrite > mNumEntriesToGo) - { - entriesToWrite = mNumEntriesToGo; - } - - // Setup ready to go - file_BlockIndexEntry *poutput = (file_BlockIndexEntry*)(((uint8_t*)pBuffer) + written); - - // Write entries - for(int b = 0; b < entriesToWrite; ++b) - { - if(!mpDiff->ReadFullBuffer(&(poutput[b]), sizeof(file_BlockIndexEntry), 0)) - { - THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) - } - - // Does this need adjusting? - int s = box_ntoh64(poutput[b].mEncodedSize); - if(s <= 0) - { - // A reference to a block in the from file - int block = 0 - s; - ASSERT(block >= 0); - if(block >= mNumEntriesInFromFile) - { - // That's not good, the block doesn't exist - THROW_EXCEPTION(BackupStoreException, OnCombineFromFileIsIncomplete) - } - - // Adjust the entry in the buffer - poutput[b].mEncodedSize = mFromBlockSizes[block]; // stored in network byte order, no translation necessary - } - } - - // Update written count - written += entriesToWrite * sizeof(file_BlockIndexEntry); - mNumEntriesToGo -= entriesToWrite; - - return written; -} - - -// -------------------------------------------------------------------------- -// -// Function -// Name: BSFCombinedIndexStream::Write(const void *, int) -// Purpose: Private class. As interface. -// Created: 8/7/04 -// -// -------------------------------------------------------------------------- -void BSFCombinedIndexStream::Write(const void *pBuffer, int NBytes) -{ - THROW_EXCEPTION(BackupStoreException, StreamDoesntHaveRequiredFeatures) -} - - -// -------------------------------------------------------------------------- -// -// Function -// Name: BSFCombinedIndexStream::StreamDataLeft() -// Purpose: Private class. As interface -// Created: 8/7/04 -// -// -------------------------------------------------------------------------- -bool BSFCombinedIndexStream::StreamDataLeft() -{ - return (!mHeaderWritten) || (mNumEntriesToGo > 0); -} - - -// -------------------------------------------------------------------------- -// -// Function -// Name: BSFCombinedIndexStream::StreamClosed() -// Purpose: Private class. As interface. -// Created: 8/7/04 -// -// -------------------------------------------------------------------------- -bool BSFCombinedIndexStream::StreamClosed() -{ - return true; // doesn't do writing -} - Deleted: box/trunk/lib/backupclient/BackupStoreFileCombine.cpp =================================================================== --- box/trunk/lib/backupclient/BackupStoreFileCombine.cpp 2011-05-24 13:33:50 UTC (rev 2962) +++ box/trunk/lib/backupclient/BackupStoreFileCombine.cpp 2011-05-24 15:08:59 UTC (rev 2963) @@ -1,410 +0,0 @@ -// -------------------------------------------------------------------------- -// -// File -// Name: BackupStoreFileCombine.cpp -// Purpose: File combining for BackupStoreFile -// Created: 16/1/04 -// -// -------------------------------------------------------------------------- - -#include "Box.h" - -#include - -#include "BackupStoreFile.h" -#include "BackupStoreFileWire.h" -#include "BackupStoreObjectMagic.h" -#include "BackupStoreException.h" -#include "BackupStoreConstants.h" -#include "BackupStoreFilename.h" -#include "FileStream.h" - -#include "MemLeakFindOn.h" - -typedef struct -{ - int64_t mFilePosition; -} FromIndexEntry; - -static void LoadFromIndex(IOStream &rFrom, FromIndexEntry *pIndex, int64_t NumEntries); -static void CopyData(IOStream &rDiffData, IOStream &rDiffIndex, int64_t DiffNumBlocks, IOStream &rFrom, FromIndexEntry *pFromIndex, int64_t FromNumBlocks, IOStream &rOut); -static void WriteNewIndex(IOStream &rDiff, int64_t DiffNumBlocks, FromIndexEntry *pFromIndex, int64_t FromNumBlocks, IOStream &rOut); - -// -------------------------------------------------------------------------- -// -// Function -// Name: BackupStoreFile::CombineFile(IOStream &, IOStream &, IOStream &) -// Purpose: Where rDiff is a store file which is incomplete as a result of a -// diffing operation, rFrom is the file it is diffed from, and -// rOut is the stream in which to place the result, the old file -// and new file are combined into a file containing all the data. -// rDiff2 is the same file as rDiff, opened again to get two -// independent streams to the same file. -// Created: 16/1/04 -// -// -------------------------------------------------------------------------- -void BackupStoreFile::CombineFile(IOStream &rDiff, IOStream &rDiff2, IOStream &rFrom, IOStream &rOut) -{ - // Read and copy the header. - file_StreamFormat hdr; - if(!rDiff.ReadFullBuffer(&hdr, sizeof(hdr), 0)) - { - THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) - } - if(ntohl(hdr.mMagicValue) != OBJECTMAGIC_FILE_MAGIC_VALUE_V1) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - // Copy - rOut.Write(&hdr, sizeof(hdr)); - // Copy over filename and attributes - // BLOCK - { - BackupStoreFilename filename; - filename.ReadFromStream(rDiff, IOStream::TimeOutInfinite); - filename.WriteToStream(rOut); - StreamableMemBlock attr; - attr.ReadFromStream(rDiff, IOStream::TimeOutInfinite); - attr.WriteToStream(rOut); - } - - // Read the header for the From file - file_StreamFormat fromHdr; - if(!rFrom.ReadFullBuffer(&fromHdr, sizeof(fromHdr), 0)) - { - THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) - } - if(ntohl(fromHdr.mMagicValue) != OBJECTMAGIC_FILE_MAGIC_VALUE_V1) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - // Skip over the filename and attributes of the From file - // BLOCK - { - BackupStoreFilename filename2; - filename2.ReadFromStream(rFrom, IOStream::TimeOutInfinite); - int32_t size_s; - if(!rFrom.ReadFullBuffer(&size_s, sizeof(size_s), 0 /* not interested in bytes read if this fails */)) - { - THROW_EXCEPTION(CommonException, StreamableMemBlockIncompleteRead) - } - int size = ntohl(size_s); - // Skip forward the size - rFrom.Seek(size, IOStream::SeekType_Relative); - } - - // Allocate memory for the block index of the From file - int64_t fromNumBlocks = box_ntoh64(fromHdr.mNumBlocks); - // NOTE: An extra entry is required so that the length of the last block can be calculated - FromIndexEntry *pFromIndex = (FromIndexEntry*)::malloc((fromNumBlocks+1) * sizeof(FromIndexEntry)); - if(pFromIndex == 0) - { - throw std::bad_alloc(); - } - - try - { - // Load the index from the From file, calculating the offsets in the - // file as we go along, and enforce that everything should be present. - LoadFromIndex(rFrom, pFromIndex, fromNumBlocks); - - // Read in the block index of the Diff file in small chunks, and output data - // for each block, either from this file, or the other file. - int64_t diffNumBlocks = box_ntoh64(hdr.mNumBlocks); - CopyData(rDiff /* positioned at start of data */, rDiff2, diffNumBlocks, rFrom, pFromIndex, fromNumBlocks, rOut); - - // Read in the block index again, and output the new block index, simply - // filling in the sizes of blocks from the old file. - WriteNewIndex(rDiff, diffNumBlocks, pFromIndex, fromNumBlocks, rOut); - - // Free buffers - ::free(pFromIndex); - pFromIndex = 0; - } - catch(...) - { - // Clean up - if(pFromIndex != 0) - { - ::free(pFromIndex); - pFromIndex = 0; - } - throw; - } -} - - -// -------------------------------------------------------------------------- -// -// Function -// Name: static LoadFromIndex(IOStream &, FromIndexEntry *, int64_t) -// Purpose: Static. Load the index from the From file -// Created: 16/1/04 -// -// -------------------------------------------------------------------------- -static void LoadFromIndex(IOStream &rFrom, FromIndexEntry *pIndex, int64_t NumEntries) -{ - ASSERT(pIndex != 0); - ASSERT(NumEntries >= 0); - - // Get the starting point in the file - int64_t filePos = rFrom.GetPosition(); - - // Jump to the end of the file to read the index - rFrom.Seek(0 - ((NumEntries * sizeof(file_BlockIndexEntry)) + sizeof(file_BlockIndexHeader)), IOStream::SeekType_End); - - // Read block index header - file_BlockIndexHeader blkhdr; - if(!rFrom.ReadFullBuffer(&blkhdr, sizeof(blkhdr), 0)) - { - THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) - } - if(ntohl(blkhdr.mMagicValue) != OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1 - || (int64_t)box_ntoh64(blkhdr.mNumBlocks) != NumEntries) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - - // And then the block entries - for(int64_t b = 0; b < NumEntries; ++b) - { - // Read - file_BlockIndexEntry en; - if(!rFrom.ReadFullBuffer(&en, sizeof(en), 0)) - { - THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) - } - - // Add to list - pIndex[b].mFilePosition = filePos; - - // Encoded size? - int64_t encodedSize = box_ntoh64(en.mEncodedSize); - // Check that the block is actually there - if(encodedSize <= 0) - { - THROW_EXCEPTION(BackupStoreException, OnCombineFromFileIsIncomplete) - } - - // Move file pointer on - filePos += encodedSize; - } - - // Store the position in the very last entry, so the size of the last entry can be calculated - pIndex[NumEntries].mFilePosition = filePos; -} - - -// -------------------------------------------------------------------------- -// -// Function -// Name: static CopyData(IOStream &, IOStream &, int64_t, IOStream &, FromIndexEntry *, int64_t, IOStream &) -// Purpose: Static. Copy data from the Diff and From file to the out file. -// rDiffData is at beginning of data. -// rDiffIndex at any position. -// rFrom is at any position. -// rOut is after the header, ready for data -// Created: 16/1/04 -// -// -------------------------------------------------------------------------- -static void CopyData(IOStream &rDiffData, IOStream &rDiffIndex, int64_t DiffNumBlocks, - IOStream &rFrom, FromIndexEntry *pFromIndex, int64_t FromNumBlocks, IOStream &rOut) -{ - // Jump to the end of the diff file to read the index - rDiffIndex.Seek(0 - ((DiffNumBlocks * sizeof(file_BlockIndexEntry)) + sizeof(file_BlockIndexHeader)), IOStream::SeekType_End); - - // Read block index header - file_BlockIndexHeader diffBlkhdr; - if(!rDiffIndex.ReadFullBuffer(&diffBlkhdr, sizeof(diffBlkhdr), 0)) - { - THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) - } - if(ntohl(diffBlkhdr.mMagicValue) != OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1 - || (int64_t)box_ntoh64(diffBlkhdr.mNumBlocks) != DiffNumBlocks) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - - // Record where the From file is - int64_t fromPos = rFrom.GetPosition(); - - // Buffer data - void *buffer = 0; - int bufferSize = 0; - - try - { - // Read the blocks in! - for(int64_t b = 0; b < DiffNumBlocks; ++b) - { - // Read - file_BlockIndexEntry en; - if(!rDiffIndex.ReadFullBuffer(&en, sizeof(en), 0)) - { - THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) - } - - // What's the size value stored in the entry - int64_t encodedSize = box_ntoh64(en.mEncodedSize); - - // How much data will be read? - int32_t blockSize = 0; - if(encodedSize > 0) - { - // The block is actually in the diff file - blockSize = encodedSize; - } - else - { - // It's in the from file. First, check to see if it's valid - int64_t blockIdx = (0 - encodedSize); - if(blockIdx > FromNumBlocks) - { - // References a block which doesn't actually exist - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - // Calculate size. This operation is safe because of the extra entry at the end - blockSize = pFromIndex[blockIdx + 1].mFilePosition - pFromIndex[blockIdx].mFilePosition; - } - ASSERT(blockSize > 0); - - // Make sure there's memory available to copy this - if(bufferSize < blockSize || buffer == 0) - { - // Free old block - if(buffer != 0) - { - ::free(buffer); - buffer = 0; - bufferSize = 0; - } - // Allocate new block - buffer = ::malloc(blockSize); - if(buffer == 0) - { - throw std::bad_alloc(); - } - bufferSize = blockSize; - } - ASSERT(bufferSize >= blockSize); - - // Load in data from one of the files - if(encodedSize > 0) - { - // Load from diff file - if(!rDiffData.ReadFullBuffer(buffer, blockSize, 0)) - { - THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) - } - } - else - { - // Locate and read the data from the from file - int64_t blockIdx = (0 - encodedSize); - // Seek if necessary - if(fromPos != pFromIndex[blockIdx].mFilePosition) - { - rFrom.Seek(pFromIndex[blockIdx].mFilePosition, IOStream::SeekType_Absolute); - fromPos = pFromIndex[blockIdx].mFilePosition; - } - // Read - if(!rFrom.ReadFullBuffer(buffer, blockSize, 0)) - { - THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) - } - - // Update fromPos to current position - fromPos += blockSize; - } - - // Write data to out file - rOut.Write(buffer, blockSize); - } - - // Free buffer, if allocated - if(buffer != 0) - { - ::free(buffer); - buffer = 0; - } - } - catch(...) - { - if(buffer != 0) - { - ::free(buffer); - buffer = 0; - } - throw; - } -} - - - -// -------------------------------------------------------------------------- -// -// Function -// Name: static WriteNewIndex(IOStream &, int64_t, FromIndexEntry *, int64_t, IOStream &) -// Purpose: Write the index to the out file, just copying from the diff file and -// adjusting the entries. -// Created: 16/1/04 -// -// -------------------------------------------------------------------------- -static void WriteNewIndex(IOStream &rDiff, int64_t DiffNumBlocks, FromIndexEntry *pFromIndex, int64_t FromNumBlocks, IOStream &rOut) -{ - // Jump to the end of the diff file to read the index - rDiff.Seek(0 - ((DiffNumBlocks * sizeof(file_BlockIndexEntry)) + sizeof(file_BlockIndexHeader)), IOStream::SeekType_End); - - // Read block index header - file_BlockIndexHeader diffBlkhdr; - if(!rDiff.ReadFullBuffer(&diffBlkhdr, sizeof(diffBlkhdr), 0)) - { - THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) - } - if(ntohl(diffBlkhdr.mMagicValue) != OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1 - || (int64_t)box_ntoh64(diffBlkhdr.mNumBlocks) != DiffNumBlocks) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - - // Write it out with a blanked out other file ID - diffBlkhdr.mOtherFileID = box_hton64(0); - rOut.Write(&diffBlkhdr, sizeof(diffBlkhdr)); - - // Rewrite the index - for(int64_t b = 0; b < DiffNumBlocks; ++b) - { - file_BlockIndexEntry en; - if(!rDiff.ReadFullBuffer(&en, sizeof(en), 0)) - { - THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) - } - - // What's the size value stored in the entry - int64_t encodedSize = box_ntoh64(en.mEncodedSize); - - // Need to adjust it? - if(encodedSize <= 0) - { - // This actually refers to a block in the from file. So rewrite this. - int64_t blockIdx = (0 - encodedSize); - if(blockIdx > FromNumBlocks) - { - // References a block which doesn't actually exist - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - // Calculate size. This operation is safe because of the extra entry at the end - int32_t blockSize = pFromIndex[blockIdx + 1].mFilePosition - pFromIndex[blockIdx].mFilePosition; - // Then replace entry - en.mEncodedSize = box_hton64(((uint64_t)blockSize)); - } - - // Write entry - rOut.Write(&en, sizeof(en)); - } -} - - - - - Deleted: box/trunk/lib/backupclient/BackupStoreFileDiff.cpp =================================================================== --- box/trunk/lib/backupclient/BackupStoreFileDiff.cpp 2011-05-24 13:33:50 UTC (rev 2962) +++ box/trunk/lib/backupclient/BackupStoreFileDiff.cpp 2011-05-24 15:08:59 UTC (rev 2963) @@ -1,1046 +0,0 @@ -// -------------------------------------------------------------------------- -// -// File -// Name: BackupStoreFileDiff.cpp -// Purpose: Functions relating to diffing BackupStoreFiles -// Created: 12/1/04 -// -// -------------------------------------------------------------------------- - -#include "Box.h" - -#include - -#include -#include - -#ifdef HAVE_TIME_H - #include -#elif HAVE_SYS_TIME_H - #include -#endif - -#include "BackupStoreConstants.h" -#include "BackupStoreException.h" -#include "BackupStoreFile.h" -#include "BackupStoreFileCryptVar.h" -#include "BackupStoreFileEncodeStream.h" -#include "BackupStoreFileWire.h" -#include "BackupStoreObjectMagic.h" -#include "CommonException.h" -#include "FileStream.h" -#include "MD5Digest.h" -#include "RollingChecksum.h" -#include "Timer.h" - -#include "MemLeakFindOn.h" - -#include - -using namespace BackupStoreFileCryptVar; -using namespace BackupStoreFileCreation; - -// By default, don't trace out details of the diff as we go along -- would fill up logs significantly. -// But it's useful for the test. -#ifndef BOX_RELEASE_BUILD - bool BackupStoreFile::TraceDetailsOfDiffProcess = false; -#endif - -static void LoadIndex(IOStream &rBlockIndex, int64_t ThisID, BlocksAvailableEntry **ppIndex, int64_t &rNumBlocksOut, int Timeout, bool &rCanDiffFromThis); -static void FindMostUsedSizes(BlocksAvailableEntry *pIndex, int64_t NumBlocks, int32_t Sizes[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES]); -static void SearchForMatchingBlocks(IOStream &rFile, - std::map &rFoundBlocks, BlocksAvailableEntry *pIndex, - int64_t NumBlocks, int32_t Sizes[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES], - DiffTimer *pDiffTimer); -static void SetupHashTable(BlocksAvailableEntry *pIndex, int64_t NumBlocks, int32_t BlockSize, BlocksAvailableEntry **pHashTable); -static bool SecondStageMatch(BlocksAvailableEntry *pFirstInHashList, RollingChecksum &fastSum, uint8_t *pBeginnings, uint8_t *pEndings, int Offset, int32_t BlockSize, int64_t FileBlockNumber, -BlocksAvailableEntry *pIndex, std::map &rFoundBlocks); -static void GenerateRecipe(BackupStoreFileEncodeStream::Recipe &rRecipe, BlocksAvailableEntry *pIndex, int64_t NumBlocks, std::map &rFoundBlocks, int64_t SizeOfInputFile); - -// -------------------------------------------------------------------------- -// -// Function -// Name: BackupStoreFile::MoveStreamPositionToBlockIndex(IOStream &) -// Purpose: Move the file pointer in this stream to just before the block index. -// Assumes that the stream is at the beginning, seekable, and -// reading from the stream is OK. -// Created: 12/1/04 -// -// -------------------------------------------------------------------------- -void BackupStoreFile::MoveStreamPositionToBlockIndex(IOStream &rStream) -{ - // Size of file - int64_t fileSize = rStream.BytesLeftToRead(); - - // Get header - file_StreamFormat hdr; - - // Read the header - if(!rStream.ReadFullBuffer(&hdr, sizeof(hdr), 0 /* not interested in bytes read if this fails */, IOStream::TimeOutInfinite)) - { - // Couldn't read header - THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) - } - - // Check magic number - if(ntohl(hdr.mMagicValue) != OBJECTMAGIC_FILE_MAGIC_VALUE_V1 -#ifndef BOX_DISABLE_BACKWARDS_COMPATIBILITY_BACKUPSTOREFILE - && ntohl(hdr.mMagicValue) != OBJECTMAGIC_FILE_MAGIC_VALUE_V0 -#endif - ) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - - // Work out where the index is - int64_t numBlocks = box_ntoh64(hdr.mNumBlocks); - int64_t blockHeaderPosFromEnd = ((numBlocks * sizeof(file_BlockIndexEntry)) + sizeof(file_BlockIndexHeader)); - - // Sanity check - if(blockHeaderPosFromEnd > static_cast(fileSize - sizeof(file_StreamFormat))) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - - // Seek to that position - rStream.Seek(0 - blockHeaderPosFromEnd, IOStream::SeekType_End); - - // Done. Stream now in right position (as long as the file is formatted correctly) -} - - -// -------------------------------------------------------------------------- -// -// Function -// Name: BackupStoreFile::EncodeFileDiff(const char *, int64_t, const BackupStoreFilename &, int64_t, IOStream &, int64_t *) -// Purpose: Similar to EncodeFile, but takes the object ID of the file it's -// diffing from, and the index of the blocks in a stream. It'll then -// calculate which blocks can be reused from that old file. -// The timeout is the timeout value for reading the diff block index. -// If pIsCompletelyDifferent != 0, it will be set to true if the -// the two files are completely different (do not share any block), false otherwise. -// -// Created: 12/1/04 -// -// -------------------------------------------------------------------------- -std::auto_ptr BackupStoreFile::EncodeFileDiff -( - const char *Filename, int64_t ContainerID, - const BackupStoreFilename &rStoreFilename, int64_t DiffFromObjectID, - IOStream &rDiffFromBlockIndex, int Timeout, DiffTimer *pDiffTimer, - int64_t *pModificationTime, bool *pIsCompletelyDifferent) -{ - // Is it a symlink? - { - EMU_STRUCT_STAT st; - if(EMU_LSTAT(Filename, &st) != 0) - { - THROW_EXCEPTION(CommonException, OSFileError) - } - if((st.st_mode & S_IFLNK) == S_IFLNK) - { - // Don't do diffs for symlinks - if(pIsCompletelyDifferent != 0) - { - *pIsCompletelyDifferent = true; - } - return EncodeFile(Filename, ContainerID, rStoreFilename, pModificationTime); - } - } - - // Load in the blocks - BlocksAvailableEntry *pindex = 0; - int64_t blocksInIndex = 0; - bool canDiffFromThis = false; - LoadIndex(rDiffFromBlockIndex, DiffFromObjectID, &pindex, blocksInIndex, Timeout, canDiffFromThis); - // BOX_TRACE("Diff: Blocks in index: " << blocksInIndex); - - if(!canDiffFromThis) - { - // Don't do diffing... - if(pIsCompletelyDifferent != 0) - { - *pIsCompletelyDifferent = true; - } - return EncodeFile(Filename, ContainerID, rStoreFilename, pModificationTime); - } - - // Pointer to recipe we're going to create - BackupStoreFileEncodeStream::Recipe *precipe = 0; - - try - { - // Find which sizes should be scanned - int32_t sizesToScan[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES]; - FindMostUsedSizes(pindex, blocksInIndex, sizesToScan); - - // Flag for reporting to the user - bool completelyDifferent; - - // BLOCK - { - // Search the file to find matching blocks - std::map foundBlocks; // map of offset in file to index in block index - int64_t sizeOfInputFile = 0; - // BLOCK - { - FileStream file(Filename); - // Get size of file - sizeOfInputFile = file.BytesLeftToRead(); - // Find all those lovely matching blocks - SearchForMatchingBlocks(file, foundBlocks, pindex, - blocksInIndex, sizesToScan, pDiffTimer); - - // Is it completely different? - completelyDifferent = (foundBlocks.size() == 0); - } - - // Create a recipe -- if the two files are completely different, don't put the from file ID in the recipe. - precipe = new BackupStoreFileEncodeStream::Recipe(pindex, blocksInIndex, completelyDifferent?(0):(DiffFromObjectID)); - BlocksAvailableEntry *pindexKeptRef = pindex; // we need this later, but must set pindex == 0 now, because of exceptions - pindex = 0; // Recipe now has ownership - - // Fill it in - GenerateRecipe(*precipe, pindexKeptRef, blocksInIndex, foundBlocks, sizeOfInputFile); - } - // foundBlocks no longer required - - // Create the stream - std::auto_ptr stream(new BackupStoreFileEncodeStream); - - // Do the initial setup - ((BackupStoreFileEncodeStream*)stream.get())->Setup(Filename, precipe, ContainerID, rStoreFilename, pModificationTime); - precipe = 0; // Stream has taken ownership of this - - // Tell user about completely different status? - if(pIsCompletelyDifferent != 0) - { - *pIsCompletelyDifferent = completelyDifferent; - } - - // Return the stream for the caller - return stream; - } - catch(...) - { - // cleanup - if(pindex != 0) - { - ::free(pindex); - pindex = 0; - } - if(precipe != 0) - { - delete precipe; - precipe = 0; - } - throw; - } -} - -// -------------------------------------------------------------------------- -// -// Function -// Name: static LoadIndex(IOStream &, int64_t, BlocksAvailableEntry **, int64_t, bool &) -// Purpose: Read in an index, and decrypt, and store in the in memory block format. -// rCanDiffFromThis is set to false if the version of the from file is too old. -// Created: 12/1/04 -// -// -------------------------------------------------------------------------- -static void LoadIndex(IOStream &rBlockIndex, int64_t ThisID, BlocksAvailableEntry **ppIndex, int64_t &rNumBlocksOut, int Timeout, bool &rCanDiffFromThis) -{ - // Reset - rNumBlocksOut = 0; - rCanDiffFromThis = false; - - // Read header - file_BlockIndexHeader hdr; - if(!rBlockIndex.ReadFullBuffer(&hdr, sizeof(hdr), 0 /* not interested in bytes read if this fails */, Timeout)) - { - // Couldn't read header - THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) - } - -#ifndef BOX_DISABLE_BACKWARDS_COMPATIBILITY_BACKUPSTOREFILE - // Check against backwards comptaibility stuff - if(hdr.mMagicValue == (int32_t)htonl(OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V0)) - { - // Won't diff against old version - - // Absorb rest of stream - char buffer[2048]; - while(rBlockIndex.StreamDataLeft()) - { - rBlockIndex.Read(buffer, sizeof(buffer), 1000 /* 1 sec timeout */); - } - - // Tell caller - rCanDiffFromThis = false; - return; - } -#endif - - // Check magic - if(hdr.mMagicValue != (int32_t)htonl(OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1)) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - - // Check that we're not trying to diff against a file which references blocks from another file - if(((int64_t)box_ntoh64(hdr.mOtherFileID)) != 0) - { - THROW_EXCEPTION(BackupStoreException, CannotDiffAnIncompleteStoreFile) - } - - // Mark as an acceptable diff. - rCanDiffFromThis = true; - - // Get basic information - int64_t numBlocks = box_ntoh64(hdr.mNumBlocks); - uint64_t entryIVBase = box_ntoh64(hdr.mEntryIVBase); - - //TODO: Verify that these sizes look reasonable - - // Allocate space for the index - BlocksAvailableEntry *pindex = (BlocksAvailableEntry*)::malloc(sizeof(BlocksAvailableEntry) * numBlocks); - if(pindex == 0) - { - throw std::bad_alloc(); - } - - try - { - for(int64_t b = 0; b < numBlocks; ++b) - { - // Read an entry from the stream - file_BlockIndexEntry entry; - if(!rBlockIndex.ReadFullBuffer(&entry, sizeof(entry), 0 /* not interested in bytes read if this fails */, Timeout)) - { - // Couldn't read entry - THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) - } - - // Calculate IV for this entry - uint64_t iv = entryIVBase; - iv += b; - // Network byte order - iv = box_hton64(iv); - sBlowfishDecryptBlockEntry.SetIV(&iv); - - // Decrypt the encrypted section - file_BlockIndexEntryEnc entryEnc; - int sectionSize = sBlowfishDecryptBlockEntry.TransformBlock(&entryEnc, sizeof(entryEnc), - entry.mEnEnc, sizeof(entry.mEnEnc)); - if(sectionSize != sizeof(entryEnc)) - { - THROW_EXCEPTION(BackupStoreException, BlockEntryEncodingDidntGiveExpectedLength) - } - - // Check that we're not trying to diff against a file which references blocks from another file - if(((int64_t)box_ntoh64(entry.mEncodedSize)) <= 0) - { - THROW_EXCEPTION(BackupStoreException, CannotDiffAnIncompleteStoreFile) - } - - // Store all the required information - pindex[b].mpNextInHashList = 0; // hash list not set up yet - pindex[b].mSize = ntohl(entryEnc.mSize); - pindex[b].mWeakChecksum = ntohl(entryEnc.mWeakChecksum); - ::memcpy(pindex[b].mStrongChecksum, entryEnc.mStrongChecksum, sizeof(pindex[b].mStrongChecksum)); - } - - // Store index pointer for called - ASSERT(ppIndex != 0); - *ppIndex = pindex; - - // Store number of blocks for caller - rNumBlocksOut = numBlocks; - - } - catch(...) - { - // clean up and send the exception along its way - ::free(pindex); - throw; - } -} - - -// -------------------------------------------------------------------------- -// -// Function -// Name: static FindMostUsedSizes(BlocksAvailableEntry *, int64_t, int32_t[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES]) -// Purpose: Finds the most commonly used block sizes in the index -// Created: 12/1/04 -// -// -------------------------------------------------------------------------- -static void FindMostUsedSizes(BlocksAvailableEntry *pIndex, int64_t NumBlocks, int32_t Sizes[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES]) -{ - // Array for lengths - int64_t sizeCounts[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES]; - - // Set arrays to lots of zeros (= unused entries) - for(int l = 0; l < BACKUP_FILE_DIFF_MAX_BLOCK_SIZES; ++l) - { - Sizes[l] = 0; - sizeCounts[l] = 0; - } - - // Array for collecting sizes - std::map foundSizes; - - // Run through blocks and make a count of the entries - for(int64_t b = 0; b < NumBlocks; ++b) - { - // Only if the block size is bigger than the minimum size we'll scan for - if(pIndex[b].mSize > BACKUP_FILE_DIFF_MIN_BLOCK_SIZE) - { - // Find entry? - std::map::const_iterator f(foundSizes.find(pIndex[b].mSize)); - if(f != foundSizes.end()) - { - // Increment existing entry - foundSizes[pIndex[b].mSize] = foundSizes[pIndex[b].mSize] + 1; - } - else - { - // New entry - foundSizes[pIndex[b].mSize] = 1; - } - } - } - - // Make the block sizes - for(std::map::const_iterator i(foundSizes.begin()); i != foundSizes.end(); ++i) - { - // Find the position of the size in the array - for(int t = 0; t < BACKUP_FILE_DIFF_MAX_BLOCK_SIZES; ++t) - { - // Instead of sorting on the raw count of blocks, - // take the file area covered by this block size. - if(i->second * i->first > sizeCounts[t] * Sizes[t]) - { - // Then this size belong before this entry -- shuffle them up - for(int s = (BACKUP_FILE_DIFF_MAX_BLOCK_SIZES - 1); s >= t; --s) - { - Sizes[s] = Sizes[s-1]; - sizeCounts[s] = sizeCounts[s-1]; - } - - // Insert this size - Sizes[t] = i->first; - sizeCounts[t] = i->second; - - // Shouldn't do any more searching - break; - } - } - } - - // trace the size table in debug builds -#ifndef BOX_RELEASE_BUILD - if(BackupStoreFile::TraceDetailsOfDiffProcess) - { - for(int t = 0; t < BACKUP_FILE_DIFF_MAX_BLOCK_SIZES; ++t) - { - BOX_TRACE("Diff block size " << t << ": " << - Sizes[t] << " (count = " << - sizeCounts[t] << ")"); - } - } -#endif -} - - - -// -------------------------------------------------------------------------- -// -// Function -// Name: static SearchForMatchingBlocks(IOStream &, std::map &, BlocksAvailableEntry *, int64_t, int32_t[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES]) -// Purpose: Find the matching blocks within the file. -// Created: 12/1/04 -// -// -------------------------------------------------------------------------- -static void SearchForMatchingBlocks(IOStream &rFile, std::map &rFoundBlocks, - BlocksAvailableEntry *pIndex, int64_t NumBlocks, - int32_t Sizes[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES], DiffTimer *pDiffTimer) -{ - Timer maximumDiffingTime(0, "MaximumDiffingTime"); - - if(pDiffTimer && pDiffTimer->IsManaged()) - { - maximumDiffingTime = Timer(pDiffTimer->GetMaximumDiffingTime(), - "MaximumDiffingTime"); - } - - std::map goodnessOfFit; - - // Allocate the hash lookup table - BlocksAvailableEntry **phashTable = (BlocksAvailableEntry **)::malloc(sizeof(BlocksAvailableEntry *) * (64*1024)); - - // Choose a size for the buffer, just a little bit more than the maximum block size - int32_t bufSize = Sizes[0]; - for(int z = 1; z < BACKUP_FILE_DIFF_MAX_BLOCK_SIZES; ++z) - { - if(Sizes[z] > bufSize) bufSize = Sizes[z]; - } - bufSize += 4; - ASSERT(bufSize > Sizes[0]); - ASSERT(bufSize > 0); - if(bufSize > (BACKUP_FILE_MAX_BLOCK_SIZE + 1024)) - { - THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) - } - - // TODO: Because we read in the file a scanned block size at a time, - // it is likely to be inefficient. Probably will be much better to - // calculate checksums for all block sizes in a single pass. - - // Allocate the buffers. - uint8_t *pbuffer0 = (uint8_t *)::malloc(bufSize); - uint8_t *pbuffer1 = (uint8_t *)::malloc(bufSize); - try - { - // Check buffer allocation - if(pbuffer0 == 0 || pbuffer1 == 0 || phashTable == 0) - { - // If a buffer got allocated, it will be cleaned up in the catch block - throw std::bad_alloc(); - } - - // Flag to abort the run, if too many blocks are found -- avoid using - // huge amounts of processor time when files contain many similar blocks. - bool abortSearch = false; - - // Search for each block size in turn - // NOTE: Do the smallest size first, so that the scheme for adding - // entries in the found list works as expected and replaces smallers block - // with larger blocks when it finds matches at the same offset in the file. - for(int s = BACKUP_FILE_DIFF_MAX_BLOCK_SIZES - 1; s >= 0; --s) - { - ASSERT(Sizes[s] <= bufSize); - BOX_TRACE("Diff pass " << s << ", for block size " << - Sizes[s]); - - // Check we haven't finished - if(Sizes[s] == 0) - { - // empty entry, try next size - continue; - } - - // Set up the hash table entries - SetupHashTable(pIndex, NumBlocks, Sizes[s], phashTable); - - // Shift file position to beginning - rFile.Seek(0, IOStream::SeekType_Absolute); - - // Read first block - if(rFile.Read(pbuffer0, Sizes[s]) != Sizes[s]) - { - // Size of file too short to match -- do next size - continue; - } - - // Setup block pointers - uint8_t *beginnings = pbuffer0; - uint8_t *endings = pbuffer1; - int offset = 0; - - // Calculate the first checksum, ready for rolling - RollingChecksum rolling(beginnings, Sizes[s]); - - // Then roll, until the file is exhausted - int64_t fileBlockNumber = 0; - int64_t fileOffset = 0; - int rollOverInitialBytes = 0; - while(true) - { - if(maximumDiffingTime.HasExpired()) - { - ASSERT(pDiffTimer != NULL); - BOX_INFO("MaximumDiffingTime reached - " - "suspending file diff"); - abortSearch = true; - break; - } - - if(pDiffTimer) - { - pDiffTimer->DoKeepAlive(); - } - - // Load in another block of data, and record how big it is - int bytesInEndings = rFile.Read(endings, Sizes[s]); - int tmp; - - // Skip any bytes from a previous matched block - if(rollOverInitialBytes > 0 && offset < bytesInEndings) - { - int spaceLeft = bytesInEndings - offset; - int thisRoll = (rollOverInitialBytes > spaceLeft) ? spaceLeft : rollOverInitialBytes; - - rolling.RollForwardSeveral(beginnings+offset, endings+offset, Sizes[s], thisRoll); - - offset += thisRoll; - fileOffset += thisRoll; - rollOverInitialBytes -= thisRoll; - - if(rollOverInitialBytes) - { - goto refresh; - } - } - - if(goodnessOfFit.count(fileOffset)) - { - tmp = goodnessOfFit[fileOffset]; - } - else - { - tmp = 0; - } - - if(tmp >= Sizes[s]) - { - // Skip over bigger ready-matched blocks completely - rollOverInitialBytes = tmp; - int spaceLeft = bytesInEndings - offset; - int thisRoll = (rollOverInitialBytes > spaceLeft) ? spaceLeft : rollOverInitialBytes; - - rolling.RollForwardSeveral(beginnings+offset, endings+offset, Sizes[s], thisRoll); - - offset += thisRoll; - fileOffset += thisRoll; - rollOverInitialBytes -= thisRoll; - - if(rollOverInitialBytes) - { - goto refresh; - } - } - - while(offset < bytesInEndings) - { - // Is current checksum in hash list? - uint16_t hash = rolling.GetComponentForHashing(); - if(phashTable[hash] != 0 && (goodnessOfFit.count(fileOffset) == 0 || goodnessOfFit[fileOffset] < Sizes[s])) - { - if(SecondStageMatch(phashTable[hash], rolling, beginnings, endings, offset, Sizes[s], fileBlockNumber, pIndex, rFoundBlocks)) - { - BOX_TRACE("Found block match for " << hash << " of " << Sizes[s] << " bytes at offset " << fileOffset); - goodnessOfFit[fileOffset] = Sizes[s]; - - // Block matched, roll the checksum forward to the next block without doing - // any more comparisons, because these are pointless (as any more matches will be ignored when - // the recipe is generated) and just take up valuable processor time. Edge cases are - // especially nasty, using huge amounts of time and memory. - int skip = Sizes[s]; - if(offset < bytesInEndings && skip > 0) - { - int spaceLeft = bytesInEndings - offset; - int thisRoll = (skip > spaceLeft) ? spaceLeft : skip; - - rolling.RollForwardSeveral(beginnings+offset, endings+offset, Sizes[s], thisRoll); - - offset += thisRoll; - fileOffset += thisRoll; - skip -= thisRoll; - } - // Not all the bytes necessary will have been skipped, so get them - // skipped after the next block is loaded. - rollOverInitialBytes = skip; - - // End this loop, so the final byte isn't used again - break; - } - else - { - BOX_TRACE("False alarm match for " << hash << " of " << Sizes[s] << " bytes at offset " << fileOffset); - } - - int64_t NumBlocksFound = static_cast( - rFoundBlocks.size()); - int64_t MaxBlocksFound = NumBlocks * - BACKUP_FILE_DIFF_MAX_BLOCK_FIND_MULTIPLE; - - if(NumBlocksFound > MaxBlocksFound) - { - abortSearch = true; - break; - } - } - - // Roll checksum forward - rolling.RollForward(beginnings[offset], endings[offset], Sizes[s]); - - // Increment offsets - ++offset; - ++fileOffset; - } - - if(abortSearch) break; - - refresh: - // Finished? - if(bytesInEndings != Sizes[s]) - { - // No more data in file -- check the final block - // (Do a copy and paste of 5 lines of code instead of introducing a comparison for - // each byte of the file) - uint16_t hash = rolling.GetComponentForHashing(); - if(phashTable[hash] != 0 && (goodnessOfFit.count(fileOffset) == 0 || goodnessOfFit[fileOffset] < Sizes[s])) - { - if(SecondStageMatch(phashTable[hash], rolling, beginnings, endings, offset, Sizes[s], fileBlockNumber, pIndex, rFoundBlocks)) - { - goodnessOfFit[fileOffset] = Sizes[s]; - } - } - - // finish - break; - } - - // Switch buffers, reset offset - beginnings = endings; - endings = (beginnings == pbuffer0)?(pbuffer1):(pbuffer0); // ie the other buffer - offset = 0; - - // And count the blocks which have been done - ++fileBlockNumber; - } - - if(abortSearch) break; - } - - // Free buffers and hash table - ::free(pbuffer1); - pbuffer1 = 0; - ::free(pbuffer0); - pbuffer0 = 0; - ::free(phashTable); - phashTable = 0; - } - catch(...) - { - // Cleanup and throw - if(pbuffer1 != 0) ::free(pbuffer1); - if(pbuffer0 != 0) ::free(pbuffer0); - if(phashTable != 0) ::free(phashTable); - throw; - } - -#ifndef BOX_RELEASE_BUILD - if(BackupStoreFile::TraceDetailsOfDiffProcess) - { - // Trace out the found blocks in debug mode - BOX_TRACE("Diff: list of found blocks"); - BOX_TRACE("======== ======== ======== ========"); - BOX_TRACE(" Offset BlkIdx Size Movement"); - for(std::map::const_iterator i(rFoundBlocks.begin()); i != rFoundBlocks.end(); ++i) - { - int64_t orgLoc = 0; - for(int64_t b = 0; b < i->second; ++b) - { - orgLoc += pIndex[b].mSize; - } - BOX_TRACE(std::setw(8) << i->first << " " << - std::setw(8) << i->second << " " << - std::setw(8) << pIndex[i->second].mSize << - " " << - std::setw(8) << (i->first - orgLoc)); - } - BOX_TRACE("======== ======== ======== ========"); - } -#endif -} - - -// -------------------------------------------------------------------------- -// -// Function -// Name: static SetupHashTable(BlocksAvailableEntry *, int64_t, in32_t, BlocksAvailableEntry **) -// Purpose: Set up the hash table ready for a scan -// Created: 14/1/04 -// -// -------------------------------------------------------------------------- -static void SetupHashTable(BlocksAvailableEntry *pIndex, int64_t NumBlocks, int32_t BlockSize, BlocksAvailableEntry **pHashTable) -{ - // Set all entries in the hash table to zero - ::memset(pHashTable, 0, (sizeof(BlocksAvailableEntry *) * (64*1024))); - - // Scan through the blocks, building the hash table - for(int64_t b = 0; b < NumBlocks; ++b) - { - // Only look at the required block size - if(pIndex[b].mSize == BlockSize) - { - // Get the value under which to hash this entry - uint16_t hash = RollingChecksum::ExtractHashingComponent(pIndex[b].mWeakChecksum); - - // Already present in table? - if(pHashTable[hash] != 0) - { - //BOX_TRACE("Another hash entry for " << hash << " found"); - // Yes -- need to set the pointer in this entry to the current entry to build the linked list - pIndex[b].mpNextInHashList = pHashTable[hash]; - } - - // Put a pointer to this entry in the hash table - pHashTable[hash] = pIndex + b; - } - } -} - - -// -------------------------------------------------------------------------- -// -// Function -// Name: static bool SecondStageMatch(xxx) -// Purpose: When a match in the hash table is found, scan for second stage match using strong checksum. -// Created: 14/1/04 -// -// -------------------------------------------------------------------------- -static bool SecondStageMatch(BlocksAvailableEntry *pFirstInHashList, RollingChecksum &fastSum, uint8_t *pBeginnings, uint8_t *pEndings, - int Offset, int32_t BlockSize, int64_t FileBlockNumber, BlocksAvailableEntry *pIndex, std::map &rFoundBlocks) -{ - // Check parameters - ASSERT(pBeginnings != 0); - ASSERT(pEndings != 0); - ASSERT(Offset >= 0); - ASSERT(BlockSize > 0); - ASSERT(pFirstInHashList != 0); - ASSERT(pIndex != 0); - -#ifndef BOX_RELEASE_BUILD - uint16_t DEBUG_Hash = fastSum.GetComponentForHashing(); -#endif - uint32_t Checksum = fastSum.GetChecksum(); - - // Before we go to the expense of the MD5, make sure it's a darn good match on the checksum we already know. - BlocksAvailableEntry *scan = pFirstInHashList; - bool found=false; - while(scan != 0) - { - if(scan->mWeakChecksum == Checksum) - { - found = true; - break; - } - scan = scan->mpNextInHashList; - } - if(!found) - { - return false; - } - - // Calculate the strong MD5 digest for this block - MD5Digest strong; - // Add the data from the beginnings - strong.Add(pBeginnings + Offset, BlockSize - Offset); - // Add any data from the endings - if(Offset > 0) - { - strong.Add(pEndings, Offset); - } - strong.Finish(); - - // Then go through the entries in the hash list, comparing with the strong digest calculated - scan = pFirstInHashList; - //BOX_TRACE("second stage match"); - while(scan != 0) - { - //BOX_TRACE("scan size " << scan->mSize << - // ", block size " << BlockSize << - // ", hash " << Hash); - ASSERT(scan->mSize == BlockSize); - ASSERT(RollingChecksum::ExtractHashingComponent(scan->mWeakChecksum) == DEBUG_Hash); - - // Compare? - if(strong.DigestMatches(scan->mStrongChecksum)) - { - //BOX_TRACE("Match!\n"); - // Found! Add to list of found blocks... - int64_t fileOffset = (FileBlockNumber * BlockSize) + Offset; - int64_t blockIndex = (scan - pIndex); // pointer arthmitic is frowned upon. But most efficient way of doing it here -- alternative is to use more memory - - // We do NOT search for smallest blocks first, as this code originally assumed. - // To prevent this from potentially overwriting a better match, the caller must determine - // the relative "goodness" of any existing match and this one, and avoid the call if it - // could be detrimental. - rFoundBlocks[fileOffset] = blockIndex; - - // No point in searching further, report success - return true; - } - - // Next - scan = scan->mpNextInHashList; - } - - // Not matched - return false; -} - - -// -------------------------------------------------------------------------- -// -// Function -// Name: static GenerateRecipe(BackupStoreFileEncodeStream::Recipe &, BlocksAvailableEntry *, int64_t, std::map &) -// Purpose: Fills in the recipe from the found block list -// Created: 15/1/04 -// -// -------------------------------------------------------------------------- -static void GenerateRecipe(BackupStoreFileEncodeStream::Recipe &rRecipe, BlocksAvailableEntry *pIndex, - int64_t NumBlocks, std::map &rFoundBlocks, int64_t SizeOfInputFile) -{ - // NOTE: This function could be a lot more sophisiticated. For example, if - // a small block overlaps a big block like this - // **** - // ******************************* - // then the small block will be used, not the big one. But it'd be better to - // just ignore the small block and keep the big one. However, some stats should - // be gathered about real world files before writing complex code which might - // go wrong. - - // Initialise a blank instruction - BackupStoreFileEncodeStream::RecipeInstruction instruction; - #define RESET_INSTRUCTION \ - instruction.mSpaceBefore = 0; \ - instruction.mBlocks = 0; \ - instruction.mpStartBlock = 0; - RESET_INSTRUCTION - - // First, a special case for when there are no found blocks - if(rFoundBlocks.size() == 0) - { - // No blocks, just a load of space - instruction.mSpaceBefore = SizeOfInputFile; - rRecipe.push_back(instruction); - - #ifndef BOX_RELEASE_BUILD - if(BackupStoreFile::TraceDetailsOfDiffProcess) - { - BOX_TRACE("Diff: Default recipe generated, " << - SizeOfInputFile << " bytes of file"); - } - #endif - - // Don't do anything - return; - } - - // Current location - int64_t loc = 0; - - // Then iterate through the list, generating the recipe - std::map::const_iterator i(rFoundBlocks.begin()); - ASSERT(i != rFoundBlocks.end()); // check logic - - // Counting for debug tracing -#ifndef BOX_RELEASE_BUILD - int64_t debug_NewBytesFound = 0; - int64_t debug_OldBlocksUsed = 0; -#endif - - for(; i != rFoundBlocks.end(); ++i) - { - // Remember... map is (position in file) -> (index of block in pIndex) - - if(i->first < loc) - { - // This block overlaps the last one - continue; - } - else if(i->first > loc) - { - // There's a gap between the end of the last thing and this block. - // If there's an instruction waiting, push it onto the list - if(instruction.mSpaceBefore != 0 || instruction.mpStartBlock != 0) - { - rRecipe.push_back(instruction); - } - // Start a new instruction, with the gap ready - RESET_INSTRUCTION - instruction.mSpaceBefore = i->first - loc; - // Move location forward to match - loc += instruction.mSpaceBefore; -#ifndef BOX_RELEASE_BUILD - debug_NewBytesFound += instruction.mSpaceBefore; -#endif - } - - // First, does the current instruction need pushing back, because this block is not - // sequential to the last one? - if(instruction.mpStartBlock != 0 && (pIndex + i->second) != (instruction.mpStartBlock + instruction.mBlocks)) - { - rRecipe.push_back(instruction); - RESET_INSTRUCTION - } - - // Add in this block - if(instruction.mpStartBlock == 0) - { - // This block starts a new instruction - instruction.mpStartBlock = pIndex + i->second; - instruction.mBlocks = 1; - } - else - { - // It continues the previous section of blocks - instruction.mBlocks += 1; - } - -#ifndef BOX_RELEASE_BUILD - debug_OldBlocksUsed++; -#endif - - // Move location forward - loc += pIndex[i->second].mSize; - } - - // Push the last instruction generated - rRecipe.push_back(instruction); - - // Is there any space left at the end which needs sending? - if(loc != SizeOfInputFile) - { - RESET_INSTRUCTION - instruction.mSpaceBefore = SizeOfInputFile - loc; -#ifndef BOX_RELEASE_BUILD - debug_NewBytesFound += instruction.mSpaceBefore; -#endif - rRecipe.push_back(instruction); - } - - // dump out the recipe -#ifndef BOX_RELEASE_BUILD - BOX_TRACE("Diff: " << - debug_NewBytesFound << " new bytes found, " << - debug_OldBlocksUsed << " old blocks used"); - if(BackupStoreFile::TraceDetailsOfDiffProcess) - { - BOX_TRACE("Diff: Recipe generated (size " << rRecipe.size()); - BOX_TRACE("======== ========= ========"); - BOX_TRACE("Space b4 FirstBlk NumBlks"); - { - for(unsigned int e = 0; e < rRecipe.size(); ++e) - { - char b[64]; -#ifdef WIN32 - sprintf(b, "%8I64d", (int64_t)(rRecipe[e].mpStartBlock - pIndex)); -#else - sprintf(b, "%8lld", (int64_t)(rRecipe[e].mpStartBlock - pIndex)); -#endif - BOX_TRACE(std::setw(8) << - rRecipe[e].mSpaceBefore << - " " << - ((rRecipe[e].mpStartBlock == 0)?" -":b) << - " " << std::setw(8) << - rRecipe[e].mBlocks); - } - } - BOX_TRACE("======== ========= ========"); - } -#endif -} Copied: box/trunk/lib/backupstore/BackupStoreFileCmbDiff.cpp (from rev 2961, box/trunk/lib/backupclient/BackupStoreFileCmbDiff.cpp) =================================================================== --- box/trunk/lib/backupstore/BackupStoreFileCmbDiff.cpp (rev 0) +++ box/trunk/lib/backupstore/BackupStoreFileCmbDiff.cpp 2011-05-24 15:08:59 UTC (rev 2963) @@ -0,0 +1,326 @@ +// -------------------------------------------------------------------------- +// +// File +// Name: BackupStoreFileCmbDiff.cpp +// Purpose: Combine two diffs together +// Created: 12/7/04 +// +// -------------------------------------------------------------------------- + +#include "Box.h" + +#include +#include + +#include "BackupStoreFile.h" +#include "BackupStoreFileWire.h" +#include "BackupStoreObjectMagic.h" +#include "BackupStoreException.h" +#include "BackupStoreConstants.h" +#include "BackupStoreFilename.h" + +#include "MemLeakFindOn.h" + +// -------------------------------------------------------------------------- +// +// Function +// Name: BackupStoreFile::CombineDiffs(IOStream &, IOStream &, IOStream &rOut) +// Purpose: Given two diffs, combine them into a single diff, to produce a diff +// which, combined with the original file, creates the result of applying +// rDiff, then rDiff2. Two opens of rDiff2 are required +// Created: 12/7/04 +// +// -------------------------------------------------------------------------- +void BackupStoreFile::CombineDiffs(IOStream &rDiff1, IOStream &rDiff2, IOStream &rDiff2b, IOStream &rOut) +{ + // Skip header of first diff, record where the data starts, and skip to the index + int64_t diff1DataStarts = 0; + { + // Read the header for the From file + file_StreamFormat diff1Hdr; + if(!rDiff1.ReadFullBuffer(&diff1Hdr, sizeof(diff1Hdr), 0)) + { + THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) + } + if(ntohl(diff1Hdr.mMagicValue) != OBJECTMAGIC_FILE_MAGIC_VALUE_V1) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + // Skip over the filename and attributes of the From file + // BLOCK + { + BackupStoreFilename filename2; + filename2.ReadFromStream(rDiff1, IOStream::TimeOutInfinite); + int32_t size_s; + if(!rDiff1.ReadFullBuffer(&size_s, sizeof(size_s), 0 /* not interested in bytes read if this fails */)) + { + THROW_EXCEPTION(CommonException, StreamableMemBlockIncompleteRead) + } + int size = ntohl(size_s); + // Skip forward the size + rDiff1.Seek(size, IOStream::SeekType_Relative); + } + // Record position + diff1DataStarts = rDiff1.GetPosition(); + // Skip to index + rDiff1.Seek(0 - (((box_ntoh64(diff1Hdr.mNumBlocks)) * sizeof(file_BlockIndexEntry)) + sizeof(file_BlockIndexHeader)), IOStream::SeekType_End); + } + + // Read the index of the first diff + // Header first + file_BlockIndexHeader diff1IdxHdr; + if(!rDiff1.ReadFullBuffer(&diff1IdxHdr, sizeof(diff1IdxHdr), 0)) + { + THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) + } + if(ntohl(diff1IdxHdr.mMagicValue) != OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + int64_t diff1NumBlocks = box_ntoh64(diff1IdxHdr.mNumBlocks); + // Allocate some memory + int64_t *diff1BlockStartPositions = (int64_t*)::malloc((diff1NumBlocks + 1) * sizeof(int64_t)); + if(diff1BlockStartPositions == 0) + { + throw std::bad_alloc(); + } + + // Buffer data + void *buffer = 0; + int bufferSize = 0; + + try + { + // Then the entries: + // For each entry, want to know if it's in the file, and if so, how big it is. + // We'll store this as an array of file positions in the file, with an additioal + // entry on the end so that we can work out the length of the last block. + // If an entry isn't in the file, then store 0 - (position in other file). + int64_t diff1Position = diff1DataStarts; + for(int64_t b = 0; b < diff1NumBlocks; ++b) + { + file_BlockIndexEntry e; + if(!rDiff1.ReadFullBuffer(&e, sizeof(e), 0)) + { + THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) + } + + // Where's the block? + int64_t blockEn = box_ntoh64(e.mEncodedSize); + if(blockEn <= 0) + { + // Just store the negated block number + diff1BlockStartPositions[b] = blockEn; + } + else + { + // Block is present in this file + diff1BlockStartPositions[b] = diff1Position; + diff1Position += blockEn; + } + } + + // Finish off the list, so the last entry can have it's size calcuated. + diff1BlockStartPositions[diff1NumBlocks] = diff1Position; + + // Now read the second diff's header, copying it to the out file + file_StreamFormat diff2Hdr; + if(!rDiff2.ReadFullBuffer(&diff2Hdr, sizeof(diff2Hdr), 0)) + { + THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) + } + if(ntohl(diff2Hdr.mMagicValue) != OBJECTMAGIC_FILE_MAGIC_VALUE_V1) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + // Copy + rOut.Write(&diff2Hdr, sizeof(diff2Hdr)); + // Copy over filename and attributes + // BLOCK + { + BackupStoreFilename filename; + filename.ReadFromStream(rDiff2, IOStream::TimeOutInfinite); + filename.WriteToStream(rOut); + StreamableMemBlock attr; + attr.ReadFromStream(rDiff2, IOStream::TimeOutInfinite); + attr.WriteToStream(rOut); + } + + // Get to the index of rDiff2b, and read the header + MoveStreamPositionToBlockIndex(rDiff2b); + file_BlockIndexHeader diff2IdxHdr; + if(!rDiff2b.ReadFullBuffer(&diff2IdxHdr, sizeof(diff2IdxHdr), 0)) + { + THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) + } + if(ntohl(diff2IdxHdr.mMagicValue) != OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + int64_t diff2NumBlocks = box_ntoh64(diff2IdxHdr.mNumBlocks); + int64_t diff2IndexEntriesStart = rDiff2b.GetPosition(); + + // Then read all the entries + int64_t diff2FilePosition = rDiff2.GetPosition(); + for(int64_t b = 0; b < diff2NumBlocks; ++b) + { + file_BlockIndexEntry e; + if(!rDiff2b.ReadFullBuffer(&e, sizeof(e), 0)) + { + THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) + } + + // What do to next about copying data + bool copyBlock = false; + int copySize = 0; + int64_t copyFrom = 0; + bool fromFileDiff1 = false; + + // Where's the block? + int64_t blockEn = box_ntoh64(e.mEncodedSize); + if(blockEn > 0) + { + // Block is present in this file -- copy to out + copyBlock = true; + copyFrom = diff2FilePosition; + copySize = (int)blockEn; + + // Move pointer onwards + diff2FilePosition += blockEn; + } + else + { + // Block isn't present here -- is it present in the old one? + int64_t blockIndex = 0 - blockEn; + if(blockIndex < 0 || blockIndex > diff1NumBlocks) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + if(diff1BlockStartPositions[blockIndex] > 0) + { + // Block is in the old diff file, copy it across + copyBlock = true; + copyFrom = diff1BlockStartPositions[blockIndex]; + int nb = blockIndex + 1; + while(diff1BlockStartPositions[nb] <= 0) + { + // This is safe, because the last entry will terminate it properly! + ++nb; + ASSERT(nb <= diff1NumBlocks); + } + copySize = diff1BlockStartPositions[nb] - copyFrom; + fromFileDiff1 = true; + } + } + //TRACE4("%d %d %lld %d\n", copyBlock, copySize, copyFrom, fromFileDiff1); + + // Copy data to the output file? + if(copyBlock) + { + // Allocate enough space + if(bufferSize < copySize || buffer == 0) + { + // Free old block + if(buffer != 0) + { + ::free(buffer); + buffer = 0; + bufferSize = 0; + } + // Allocate new block + buffer = ::malloc(copySize); + if(buffer == 0) + { + throw std::bad_alloc(); + } + bufferSize = copySize; + } + ASSERT(bufferSize >= copySize); + + // Load in the data + if(fromFileDiff1) + { + rDiff1.Seek(copyFrom, IOStream::SeekType_Absolute); + if(!rDiff1.ReadFullBuffer(buffer, copySize, 0)) + { + THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) + } + } + else + { + rDiff2.Seek(copyFrom, IOStream::SeekType_Absolute); + if(!rDiff2.ReadFullBuffer(buffer, copySize, 0)) + { + THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) + } + } + // Write out data + rOut.Write(buffer, copySize); + } + } + + // Write the modified header + diff2IdxHdr.mOtherFileID = diff1IdxHdr.mOtherFileID; + rOut.Write(&diff2IdxHdr, sizeof(diff2IdxHdr)); + + // Then we'll write out the index, reading the data again + rDiff2b.Seek(diff2IndexEntriesStart, IOStream::SeekType_Absolute); + for(int64_t b = 0; b < diff2NumBlocks; ++b) + { + file_BlockIndexEntry e; + if(!rDiff2b.ReadFullBuffer(&e, sizeof(e), 0)) + { + THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) + } + + // Where's the block? + int64_t blockEn = box_ntoh64(e.mEncodedSize); + + // If it's not in this file, it needs modification... + if(blockEn <= 0) + { + int64_t blockIndex = 0 - blockEn; + // In another file. Need to translate this against the other diff + if(diff1BlockStartPositions[blockIndex] > 0) + { + // Block is in the first diff file, stick in size + int nb = blockIndex + 1; + while(diff1BlockStartPositions[nb] <= 0) + { + // This is safe, because the last entry will terminate it properly! + ++nb; + ASSERT(nb <= diff1NumBlocks); + } + int64_t size = diff1BlockStartPositions[nb] - diff1BlockStartPositions[blockIndex]; + e.mEncodedSize = box_hton64(size); + } + else + { + // Block in the original file, use translated value + e.mEncodedSize = box_hton64(diff1BlockStartPositions[blockIndex]); + } + } + + // Write entry + rOut.Write(&e, sizeof(e)); + } + } + catch(...) + { + // clean up + ::free(diff1BlockStartPositions); + if(buffer != 0) + { + ::free(buffer); + } + throw; + } + + // Clean up allocated memory + ::free(diff1BlockStartPositions); + if(buffer != 0) + { + ::free(buffer); + } +} + Copied: box/trunk/lib/backupstore/BackupStoreFileCmbIdx.cpp (from rev 2961, box/trunk/lib/backupclient/BackupStoreFileCmbIdx.cpp) =================================================================== --- box/trunk/lib/backupstore/BackupStoreFileCmbIdx.cpp (rev 0) +++ box/trunk/lib/backupstore/BackupStoreFileCmbIdx.cpp 2011-05-24 15:08:59 UTC (rev 2963) @@ -0,0 +1,324 @@ +// -------------------------------------------------------------------------- +// +// File +// Name: BackupStoreFileCmbIdx.cpp +// Purpose: Combine indicies of a delta file and the file it's a diff from. +// Created: 8/7/04 +// +// -------------------------------------------------------------------------- + +#include "Box.h" + +#include +#include + +#include "BackupStoreFile.h" +#include "BackupStoreFileWire.h" +#include "BackupStoreObjectMagic.h" +#include "BackupStoreException.h" +#include "BackupStoreConstants.h" +#include "BackupStoreFilename.h" + +#include "MemLeakFindOn.h" + +// Hide from outside world +namespace +{ + +class BSFCombinedIndexStream : public IOStream +{ +public: + BSFCombinedIndexStream(IOStream *pDiff); + ~BSFCombinedIndexStream(); + + virtual int Read(void *pBuffer, int NBytes, int Timeout = IOStream::TimeOutInfinite); + virtual void Write(const void *pBuffer, int NBytes); + virtual bool StreamDataLeft(); + virtual bool StreamClosed(); + virtual void Initialise(IOStream &rFrom); + +private: + IOStream *mpDiff; + bool mIsInitialised; + bool mHeaderWritten; + file_BlockIndexHeader mHeader; + int64_t mNumEntriesToGo; + int64_t mNumEntriesInFromFile; + int64_t *mFromBlockSizes; // NOTE: Entries in network byte order +}; + +}; + +// -------------------------------------------------------------------------- +// +// Function +// Name: BackupStoreFile::CombineFileIndices(IOStream &, IOStream &, bool) +// Purpose: Given a diff file and the file it's a diff from, return a stream from which +// can be read the index of the combined file, without actually combining them. +// The stream of the diff must have a lifetime greater than or equal to the +// lifetime of the returned stream object. The full "from" file stream +// only needs to exist during the actual function call. +// If you pass in dodgy files which aren't related, then you will either +// get an error or bad results. So don't do that. +// If DiffIsIndexOnly is true, then rDiff is assumed to be a stream positioned +// at the beginning of the block index. Similarly for FromIsIndexOnly. +// WARNING: Reads of the returned streams with buffer sizes less than 64 bytes +// will not return any data. +// Created: 8/7/04 +// +// -------------------------------------------------------------------------- +std::auto_ptr BackupStoreFile::CombineFileIndices(IOStream &rDiff, IOStream &rFrom, bool DiffIsIndexOnly, bool FromIsIndexOnly) +{ + // Reposition file pointers? + if(!DiffIsIndexOnly) + { + MoveStreamPositionToBlockIndex(rDiff); + } + if(!FromIsIndexOnly) + { + MoveStreamPositionToBlockIndex(rFrom); + } + + // Create object + std::auto_ptr stream(new BSFCombinedIndexStream(&rDiff)); + + // Initialise it + ((BSFCombinedIndexStream *)stream.get())->Initialise(rFrom); + + // And return the stream + return stream; +} + + +// -------------------------------------------------------------------------- +// +// Function +// Name: BSFCombinedIndexStream::BSFCombinedIndexStream() +// Purpose: Private class. Constructor. +// Created: 8/7/04 +// +// -------------------------------------------------------------------------- +BSFCombinedIndexStream::BSFCombinedIndexStream(IOStream *pDiff) + : mpDiff(pDiff), + mIsInitialised(false), + mHeaderWritten(false), + mNumEntriesToGo(0), + mNumEntriesInFromFile(0), + mFromBlockSizes(0) +{ + ASSERT(mpDiff != 0); +} + + +// -------------------------------------------------------------------------- +// +// Function +// Name: BSFCombinedIndexStream::~BSFCombinedIndexStream() +// Purpose: Private class. Destructor. +// Created: 8/7/04 +// +// -------------------------------------------------------------------------- +BSFCombinedIndexStream::~BSFCombinedIndexStream() +{ + if(mFromBlockSizes != 0) + { + ::free(mFromBlockSizes); + mFromBlockSizes = 0; + } +} + + +// -------------------------------------------------------------------------- +// +// Function +// Name: BSFCombinedIndexStream::Initialise(IOStream &) +// Purpose: Private class. Initalise from the streams (diff passed in constructor). +// Both streams must have file pointer positioned at the block index. +// Created: 8/7/04 +// +// -------------------------------------------------------------------------- +void BSFCombinedIndexStream::Initialise(IOStream &rFrom) +{ + // Paranoia is good. + if(mIsInitialised) + { + THROW_EXCEPTION(BackupStoreException, Internal) + } + + // Look at the diff file: Read in the header + if(!mpDiff->ReadFullBuffer(&mHeader, sizeof(mHeader), 0)) + { + THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) + } + if(ntohl(mHeader.mMagicValue) != OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + + // Read relevant data. + mNumEntriesToGo = box_ntoh64(mHeader.mNumBlocks); + + // Adjust a bit to reflect the fact it's no longer a diff + mHeader.mOtherFileID = box_hton64(0); + + // Now look at the from file: Read header + file_BlockIndexHeader fromHdr; + if(!rFrom.ReadFullBuffer(&fromHdr, sizeof(fromHdr), 0)) + { + THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) + } + if(ntohl(fromHdr.mMagicValue) != OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + + // Then... allocate memory for the list of sizes + mNumEntriesInFromFile = box_ntoh64(fromHdr.mNumBlocks); + mFromBlockSizes = (int64_t*)::malloc(mNumEntriesInFromFile * sizeof(int64_t)); + if(mFromBlockSizes == 0) + { + throw std::bad_alloc(); + } + + // And read them all in! + for(int64_t b = 0; b < mNumEntriesInFromFile; ++b) + { + file_BlockIndexEntry e; + if(!rFrom.ReadFullBuffer(&e, sizeof(e), 0)) + { + THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) + } + + // Check that the from file isn't a delta in itself + if(box_ntoh64(e.mEncodedSize) <= 0) + { + THROW_EXCEPTION(BackupStoreException, OnCombineFromFileIsIncomplete) + } + + // Store size (in network byte order) + mFromBlockSizes[b] = e.mEncodedSize; + } + + // Flag as initialised + mIsInitialised = true; +} + + +// -------------------------------------------------------------------------- +// +// Function +// Name: BSFCombinedIndexStream::Read(void *, int, int) +// Purpose: Private class. As interface. +// Created: 8/7/04 +// +// -------------------------------------------------------------------------- +int BSFCombinedIndexStream::Read(void *pBuffer, int NBytes, int Timeout) +{ + // Paranoia is good. + if(!mIsInitialised || mFromBlockSizes == 0 || mpDiff == 0) + { + THROW_EXCEPTION(BackupStoreException, Internal) + } + + int written = 0; + + // Header output yet? + if(!mHeaderWritten) + { + // Enough space? + if(NBytes < (int)sizeof(mHeader)) return 0; + + // Copy in + ::memcpy(pBuffer, &mHeader, sizeof(mHeader)); + NBytes -= sizeof(mHeader); + written += sizeof(mHeader); + + // Flag it's done + mHeaderWritten = true; + } + + // How many entries can be written? + int entriesToWrite = NBytes / sizeof(file_BlockIndexEntry); + if(entriesToWrite > mNumEntriesToGo) + { + entriesToWrite = mNumEntriesToGo; + } + + // Setup ready to go + file_BlockIndexEntry *poutput = (file_BlockIndexEntry*)(((uint8_t*)pBuffer) + written); + + // Write entries + for(int b = 0; b < entriesToWrite; ++b) + { + if(!mpDiff->ReadFullBuffer(&(poutput[b]), sizeof(file_BlockIndexEntry), 0)) + { + THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) + } + + // Does this need adjusting? + int s = box_ntoh64(poutput[b].mEncodedSize); + if(s <= 0) + { + // A reference to a block in the from file + int block = 0 - s; + ASSERT(block >= 0); + if(block >= mNumEntriesInFromFile) + { + // That's not good, the block doesn't exist + THROW_EXCEPTION(BackupStoreException, OnCombineFromFileIsIncomplete) + } + + // Adjust the entry in the buffer + poutput[b].mEncodedSize = mFromBlockSizes[block]; // stored in network byte order, no translation necessary + } + } + + // Update written count + written += entriesToWrite * sizeof(file_BlockIndexEntry); + mNumEntriesToGo -= entriesToWrite; + + return written; +} + + +// -------------------------------------------------------------------------- +// +// Function +// Name: BSFCombinedIndexStream::Write(const void *, int) +// Purpose: Private class. As interface. +// Created: 8/7/04 +// +// -------------------------------------------------------------------------- +void BSFCombinedIndexStream::Write(const void *pBuffer, int NBytes) +{ + THROW_EXCEPTION(BackupStoreException, StreamDoesntHaveRequiredFeatures) +} + + +// -------------------------------------------------------------------------- +// +// Function +// Name: BSFCombinedIndexStream::StreamDataLeft() +// Purpose: Private class. As interface +// Created: 8/7/04 +// +// -------------------------------------------------------------------------- +bool BSFCombinedIndexStream::StreamDataLeft() +{ + return (!mHeaderWritten) || (mNumEntriesToGo > 0); +} + + +// -------------------------------------------------------------------------- +// +// Function +// Name: BSFCombinedIndexStream::StreamClosed() +// Purpose: Private class. As interface. +// Created: 8/7/04 +// +// -------------------------------------------------------------------------- +bool BSFCombinedIndexStream::StreamClosed() +{ + return true; // doesn't do writing +} + Copied: box/trunk/lib/backupstore/BackupStoreFileCombine.cpp (from rev 2961, box/trunk/lib/backupclient/BackupStoreFileCombine.cpp) =================================================================== --- box/trunk/lib/backupstore/BackupStoreFileCombine.cpp (rev 0) +++ box/trunk/lib/backupstore/BackupStoreFileCombine.cpp 2011-05-24 15:08:59 UTC (rev 2963) @@ -0,0 +1,410 @@ +// -------------------------------------------------------------------------- +// +// File +// Name: BackupStoreFileCombine.cpp +// Purpose: File combining for BackupStoreFile +// Created: 16/1/04 +// +// -------------------------------------------------------------------------- + +#include "Box.h" + +#include + +#include "BackupStoreFile.h" +#include "BackupStoreFileWire.h" +#include "BackupStoreObjectMagic.h" +#include "BackupStoreException.h" +#include "BackupStoreConstants.h" +#include "BackupStoreFilename.h" +#include "FileStream.h" + +#include "MemLeakFindOn.h" + +typedef struct +{ + int64_t mFilePosition; +} FromIndexEntry; + +static void LoadFromIndex(IOStream &rFrom, FromIndexEntry *pIndex, int64_t NumEntries); +static void CopyData(IOStream &rDiffData, IOStream &rDiffIndex, int64_t DiffNumBlocks, IOStream &rFrom, FromIndexEntry *pFromIndex, int64_t FromNumBlocks, IOStream &rOut); +static void WriteNewIndex(IOStream &rDiff, int64_t DiffNumBlocks, FromIndexEntry *pFromIndex, int64_t FromNumBlocks, IOStream &rOut); + +// -------------------------------------------------------------------------- +// +// Function +// Name: BackupStoreFile::CombineFile(IOStream &, IOStream &, IOStream &) +// Purpose: Where rDiff is a store file which is incomplete as a result of a +// diffing operation, rFrom is the file it is diffed from, and +// rOut is the stream in which to place the result, the old file +// and new file are combined into a file containing all the data. +// rDiff2 is the same file as rDiff, opened again to get two +// independent streams to the same file. +// Created: 16/1/04 +// +// -------------------------------------------------------------------------- +void BackupStoreFile::CombineFile(IOStream &rDiff, IOStream &rDiff2, IOStream &rFrom, IOStream &rOut) +{ + // Read and copy the header. + file_StreamFormat hdr; + if(!rDiff.ReadFullBuffer(&hdr, sizeof(hdr), 0)) + { + THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) + } + if(ntohl(hdr.mMagicValue) != OBJECTMAGIC_FILE_MAGIC_VALUE_V1) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + // Copy + rOut.Write(&hdr, sizeof(hdr)); + // Copy over filename and attributes + // BLOCK + { + BackupStoreFilename filename; + filename.ReadFromStream(rDiff, IOStream::TimeOutInfinite); + filename.WriteToStream(rOut); + StreamableMemBlock attr; + attr.ReadFromStream(rDiff, IOStream::TimeOutInfinite); + attr.WriteToStream(rOut); + } + + // Read the header for the From file + file_StreamFormat fromHdr; + if(!rFrom.ReadFullBuffer(&fromHdr, sizeof(fromHdr), 0)) + { + THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) + } + if(ntohl(fromHdr.mMagicValue) != OBJECTMAGIC_FILE_MAGIC_VALUE_V1) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + // Skip over the filename and attributes of the From file + // BLOCK + { + BackupStoreFilename filename2; + filename2.ReadFromStream(rFrom, IOStream::TimeOutInfinite); + int32_t size_s; + if(!rFrom.ReadFullBuffer(&size_s, sizeof(size_s), 0 /* not interested in bytes read if this fails */)) + { + THROW_EXCEPTION(CommonException, StreamableMemBlockIncompleteRead) + } + int size = ntohl(size_s); + // Skip forward the size + rFrom.Seek(size, IOStream::SeekType_Relative); + } + + // Allocate memory for the block index of the From file + int64_t fromNumBlocks = box_ntoh64(fromHdr.mNumBlocks); + // NOTE: An extra entry is required so that the length of the last block can be calculated + FromIndexEntry *pFromIndex = (FromIndexEntry*)::malloc((fromNumBlocks+1) * sizeof(FromIndexEntry)); + if(pFromIndex == 0) + { + throw std::bad_alloc(); + } + + try + { + // Load the index from the From file, calculating the offsets in the + // file as we go along, and enforce that everything should be present. + LoadFromIndex(rFrom, pFromIndex, fromNumBlocks); + + // Read in the block index of the Diff file in small chunks, and output data + // for each block, either from this file, or the other file. + int64_t diffNumBlocks = box_ntoh64(hdr.mNumBlocks); + CopyData(rDiff /* positioned at start of data */, rDiff2, diffNumBlocks, rFrom, pFromIndex, fromNumBlocks, rOut); + + // Read in the block index again, and output the new block index, simply + // filling in the sizes of blocks from the old file. + WriteNewIndex(rDiff, diffNumBlocks, pFromIndex, fromNumBlocks, rOut); + + // Free buffers + ::free(pFromIndex); + pFromIndex = 0; + } + catch(...) + { + // Clean up + if(pFromIndex != 0) + { + ::free(pFromIndex); + pFromIndex = 0; + } + throw; + } +} + + +// -------------------------------------------------------------------------- +// +// Function +// Name: static LoadFromIndex(IOStream &, FromIndexEntry *, int64_t) +// Purpose: Static. Load the index from the From file +// Created: 16/1/04 +// +// -------------------------------------------------------------------------- +static void LoadFromIndex(IOStream &rFrom, FromIndexEntry *pIndex, int64_t NumEntries) +{ + ASSERT(pIndex != 0); + ASSERT(NumEntries >= 0); + + // Get the starting point in the file + int64_t filePos = rFrom.GetPosition(); + + // Jump to the end of the file to read the index + rFrom.Seek(0 - ((NumEntries * sizeof(file_BlockIndexEntry)) + sizeof(file_BlockIndexHeader)), IOStream::SeekType_End); + + // Read block index header + file_BlockIndexHeader blkhdr; + if(!rFrom.ReadFullBuffer(&blkhdr, sizeof(blkhdr), 0)) + { + THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) + } + if(ntohl(blkhdr.mMagicValue) != OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1 + || (int64_t)box_ntoh64(blkhdr.mNumBlocks) != NumEntries) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + + // And then the block entries + for(int64_t b = 0; b < NumEntries; ++b) + { + // Read + file_BlockIndexEntry en; + if(!rFrom.ReadFullBuffer(&en, sizeof(en), 0)) + { + THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) + } + + // Add to list + pIndex[b].mFilePosition = filePos; + + // Encoded size? + int64_t encodedSize = box_ntoh64(en.mEncodedSize); + // Check that the block is actually there + if(encodedSize <= 0) + { + THROW_EXCEPTION(BackupStoreException, OnCombineFromFileIsIncomplete) + } + + // Move file pointer on + filePos += encodedSize; + } + + // Store the position in the very last entry, so the size of the last entry can be calculated + pIndex[NumEntries].mFilePosition = filePos; +} + + +// -------------------------------------------------------------------------- +// +// Function +// Name: static CopyData(IOStream &, IOStream &, int64_t, IOStream &, FromIndexEntry *, int64_t, IOStream &) +// Purpose: Static. Copy data from the Diff and From file to the out file. +// rDiffData is at beginning of data. +// rDiffIndex at any position. +// rFrom is at any position. +// rOut is after the header, ready for data +// Created: 16/1/04 +// +// -------------------------------------------------------------------------- +static void CopyData(IOStream &rDiffData, IOStream &rDiffIndex, int64_t DiffNumBlocks, + IOStream &rFrom, FromIndexEntry *pFromIndex, int64_t FromNumBlocks, IOStream &rOut) +{ + // Jump to the end of the diff file to read the index + rDiffIndex.Seek(0 - ((DiffNumBlocks * sizeof(file_BlockIndexEntry)) + sizeof(file_BlockIndexHeader)), IOStream::SeekType_End); + + // Read block index header + file_BlockIndexHeader diffBlkhdr; + if(!rDiffIndex.ReadFullBuffer(&diffBlkhdr, sizeof(diffBlkhdr), 0)) + { + THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) + } + if(ntohl(diffBlkhdr.mMagicValue) != OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1 + || (int64_t)box_ntoh64(diffBlkhdr.mNumBlocks) != DiffNumBlocks) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + + // Record where the From file is + int64_t fromPos = rFrom.GetPosition(); + + // Buffer data + void *buffer = 0; + int bufferSize = 0; + + try + { + // Read the blocks in! + for(int64_t b = 0; b < DiffNumBlocks; ++b) + { + // Read + file_BlockIndexEntry en; + if(!rDiffIndex.ReadFullBuffer(&en, sizeof(en), 0)) + { + THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) + } + + // What's the size value stored in the entry + int64_t encodedSize = box_ntoh64(en.mEncodedSize); + + // How much data will be read? + int32_t blockSize = 0; + if(encodedSize > 0) + { + // The block is actually in the diff file + blockSize = encodedSize; + } + else + { + // It's in the from file. First, check to see if it's valid + int64_t blockIdx = (0 - encodedSize); + if(blockIdx > FromNumBlocks) + { + // References a block which doesn't actually exist + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + // Calculate size. This operation is safe because of the extra entry at the end + blockSize = pFromIndex[blockIdx + 1].mFilePosition - pFromIndex[blockIdx].mFilePosition; + } + ASSERT(blockSize > 0); + + // Make sure there's memory available to copy this + if(bufferSize < blockSize || buffer == 0) + { + // Free old block + if(buffer != 0) + { + ::free(buffer); + buffer = 0; + bufferSize = 0; + } + // Allocate new block + buffer = ::malloc(blockSize); + if(buffer == 0) + { + throw std::bad_alloc(); + } + bufferSize = blockSize; + } + ASSERT(bufferSize >= blockSize); + + // Load in data from one of the files + if(encodedSize > 0) + { + // Load from diff file + if(!rDiffData.ReadFullBuffer(buffer, blockSize, 0)) + { + THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) + } + } + else + { + // Locate and read the data from the from file + int64_t blockIdx = (0 - encodedSize); + // Seek if necessary + if(fromPos != pFromIndex[blockIdx].mFilePosition) + { + rFrom.Seek(pFromIndex[blockIdx].mFilePosition, IOStream::SeekType_Absolute); + fromPos = pFromIndex[blockIdx].mFilePosition; + } + // Read + if(!rFrom.ReadFullBuffer(buffer, blockSize, 0)) + { + THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) + } + + // Update fromPos to current position + fromPos += blockSize; + } + + // Write data to out file + rOut.Write(buffer, blockSize); + } + + // Free buffer, if allocated + if(buffer != 0) + { + ::free(buffer); + buffer = 0; + } + } + catch(...) + { + if(buffer != 0) + { + ::free(buffer); + buffer = 0; + } + throw; + } +} + + + +// -------------------------------------------------------------------------- +// +// Function +// Name: static WriteNewIndex(IOStream &, int64_t, FromIndexEntry *, int64_t, IOStream &) +// Purpose: Write the index to the out file, just copying from the diff file and +// adjusting the entries. +// Created: 16/1/04 +// +// -------------------------------------------------------------------------- +static void WriteNewIndex(IOStream &rDiff, int64_t DiffNumBlocks, FromIndexEntry *pFromIndex, int64_t FromNumBlocks, IOStream &rOut) +{ + // Jump to the end of the diff file to read the index + rDiff.Seek(0 - ((DiffNumBlocks * sizeof(file_BlockIndexEntry)) + sizeof(file_BlockIndexHeader)), IOStream::SeekType_End); + + // Read block index header + file_BlockIndexHeader diffBlkhdr; + if(!rDiff.ReadFullBuffer(&diffBlkhdr, sizeof(diffBlkhdr), 0)) + { + THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) + } + if(ntohl(diffBlkhdr.mMagicValue) != OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1 + || (int64_t)box_ntoh64(diffBlkhdr.mNumBlocks) != DiffNumBlocks) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + + // Write it out with a blanked out other file ID + diffBlkhdr.mOtherFileID = box_hton64(0); + rOut.Write(&diffBlkhdr, sizeof(diffBlkhdr)); + + // Rewrite the index + for(int64_t b = 0; b < DiffNumBlocks; ++b) + { + file_BlockIndexEntry en; + if(!rDiff.ReadFullBuffer(&en, sizeof(en), 0)) + { + THROW_EXCEPTION(BackupStoreException, FailedToReadBlockOnCombine) + } + + // What's the size value stored in the entry + int64_t encodedSize = box_ntoh64(en.mEncodedSize); + + // Need to adjust it? + if(encodedSize <= 0) + { + // This actually refers to a block in the from file. So rewrite this. + int64_t blockIdx = (0 - encodedSize); + if(blockIdx > FromNumBlocks) + { + // References a block which doesn't actually exist + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + // Calculate size. This operation is safe because of the extra entry at the end + int32_t blockSize = pFromIndex[blockIdx + 1].mFilePosition - pFromIndex[blockIdx].mFilePosition; + // Then replace entry + en.mEncodedSize = box_hton64(((uint64_t)blockSize)); + } + + // Write entry + rOut.Write(&en, sizeof(en)); + } +} + + + + + Copied: box/trunk/lib/backupstore/BackupStoreFileDiff.cpp (from rev 2961, box/trunk/lib/backupclient/BackupStoreFileDiff.cpp) =================================================================== --- box/trunk/lib/backupstore/BackupStoreFileDiff.cpp (rev 0) +++ box/trunk/lib/backupstore/BackupStoreFileDiff.cpp 2011-05-24 15:08:59 UTC (rev 2963) @@ -0,0 +1,1046 @@ +// -------------------------------------------------------------------------- +// +// File +// Name: BackupStoreFileDiff.cpp +// Purpose: Functions relating to diffing BackupStoreFiles +// Created: 12/1/04 +// +// -------------------------------------------------------------------------- + +#include "Box.h" + +#include + +#include +#include + +#ifdef HAVE_TIME_H + #include +#elif HAVE_SYS_TIME_H + #include +#endif + +#include "BackupStoreConstants.h" +#include "BackupStoreException.h" +#include "BackupStoreFile.h" +#include "BackupStoreFileCryptVar.h" +#include "BackupStoreFileEncodeStream.h" +#include "BackupStoreFileWire.h" +#include "BackupStoreObjectMagic.h" +#include "CommonException.h" +#include "FileStream.h" +#include "MD5Digest.h" +#include "RollingChecksum.h" +#include "Timer.h" + +#include "MemLeakFindOn.h" + +#include + +using namespace BackupStoreFileCryptVar; +using namespace BackupStoreFileCreation; + +// By default, don't trace out details of the diff as we go along -- would fill up logs significantly. +// But it's useful for the test. +#ifndef BOX_RELEASE_BUILD + bool BackupStoreFile::TraceDetailsOfDiffProcess = false; +#endif + +static void LoadIndex(IOStream &rBlockIndex, int64_t ThisID, BlocksAvailableEntry **ppIndex, int64_t &rNumBlocksOut, int Timeout, bool &rCanDiffFromThis); +static void FindMostUsedSizes(BlocksAvailableEntry *pIndex, int64_t NumBlocks, int32_t Sizes[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES]); +static void SearchForMatchingBlocks(IOStream &rFile, + std::map &rFoundBlocks, BlocksAvailableEntry *pIndex, + int64_t NumBlocks, int32_t Sizes[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES], + DiffTimer *pDiffTimer); +static void SetupHashTable(BlocksAvailableEntry *pIndex, int64_t NumBlocks, int32_t BlockSize, BlocksAvailableEntry **pHashTable); +static bool SecondStageMatch(BlocksAvailableEntry *pFirstInHashList, RollingChecksum &fastSum, uint8_t *pBeginnings, uint8_t *pEndings, int Offset, int32_t BlockSize, int64_t FileBlockNumber, +BlocksAvailableEntry *pIndex, std::map &rFoundBlocks); +static void GenerateRecipe(BackupStoreFileEncodeStream::Recipe &rRecipe, BlocksAvailableEntry *pIndex, int64_t NumBlocks, std::map &rFoundBlocks, int64_t SizeOfInputFile); + +// -------------------------------------------------------------------------- +// +// Function +// Name: BackupStoreFile::MoveStreamPositionToBlockIndex(IOStream &) +// Purpose: Move the file pointer in this stream to just before the block index. +// Assumes that the stream is at the beginning, seekable, and +// reading from the stream is OK. +// Created: 12/1/04 +// +// -------------------------------------------------------------------------- +void BackupStoreFile::MoveStreamPositionToBlockIndex(IOStream &rStream) +{ + // Size of file + int64_t fileSize = rStream.BytesLeftToRead(); + + // Get header + file_StreamFormat hdr; + + // Read the header + if(!rStream.ReadFullBuffer(&hdr, sizeof(hdr), 0 /* not interested in bytes read if this fails */, IOStream::TimeOutInfinite)) + { + // Couldn't read header + THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) + } + + // Check magic number + if(ntohl(hdr.mMagicValue) != OBJECTMAGIC_FILE_MAGIC_VALUE_V1 +#ifndef BOX_DISABLE_BACKWARDS_COMPATIBILITY_BACKUPSTOREFILE + && ntohl(hdr.mMagicValue) != OBJECTMAGIC_FILE_MAGIC_VALUE_V0 +#endif + ) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + + // Work out where the index is + int64_t numBlocks = box_ntoh64(hdr.mNumBlocks); + int64_t blockHeaderPosFromEnd = ((numBlocks * sizeof(file_BlockIndexEntry)) + sizeof(file_BlockIndexHeader)); + + // Sanity check + if(blockHeaderPosFromEnd > static_cast(fileSize - sizeof(file_StreamFormat))) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + + // Seek to that position + rStream.Seek(0 - blockHeaderPosFromEnd, IOStream::SeekType_End); + + // Done. Stream now in right position (as long as the file is formatted correctly) +} + + +// -------------------------------------------------------------------------- +// +// Function +// Name: BackupStoreFile::EncodeFileDiff(const char *, int64_t, const BackupStoreFilename &, int64_t, IOStream &, int64_t *) +// Purpose: Similar to EncodeFile, but takes the object ID of the file it's +// diffing from, and the index of the blocks in a stream. It'll then +// calculate which blocks can be reused from that old file. +// The timeout is the timeout value for reading the diff block index. +// If pIsCompletelyDifferent != 0, it will be set to true if the +// the two files are completely different (do not share any block), false otherwise. +// +// Created: 12/1/04 +// +// -------------------------------------------------------------------------- +std::auto_ptr BackupStoreFile::EncodeFileDiff +( + const char *Filename, int64_t ContainerID, + const BackupStoreFilename &rStoreFilename, int64_t DiffFromObjectID, + IOStream &rDiffFromBlockIndex, int Timeout, DiffTimer *pDiffTimer, + int64_t *pModificationTime, bool *pIsCompletelyDifferent) +{ + // Is it a symlink? + { + EMU_STRUCT_STAT st; + if(EMU_LSTAT(Filename, &st) != 0) + { + THROW_EXCEPTION(CommonException, OSFileError) + } + if((st.st_mode & S_IFLNK) == S_IFLNK) + { + // Don't do diffs for symlinks + if(pIsCompletelyDifferent != 0) + { + *pIsCompletelyDifferent = true; + } + return EncodeFile(Filename, ContainerID, rStoreFilename, pModificationTime); + } + } + + // Load in the blocks + BlocksAvailableEntry *pindex = 0; + int64_t blocksInIndex = 0; + bool canDiffFromThis = false; + LoadIndex(rDiffFromBlockIndex, DiffFromObjectID, &pindex, blocksInIndex, Timeout, canDiffFromThis); + // BOX_TRACE("Diff: Blocks in index: " << blocksInIndex); + + if(!canDiffFromThis) + { + // Don't do diffing... + if(pIsCompletelyDifferent != 0) + { + *pIsCompletelyDifferent = true; + } + return EncodeFile(Filename, ContainerID, rStoreFilename, pModificationTime); + } + + // Pointer to recipe we're going to create + BackupStoreFileEncodeStream::Recipe *precipe = 0; + + try + { + // Find which sizes should be scanned + int32_t sizesToScan[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES]; + FindMostUsedSizes(pindex, blocksInIndex, sizesToScan); + + // Flag for reporting to the user + bool completelyDifferent; + + // BLOCK + { + // Search the file to find matching blocks + std::map foundBlocks; // map of offset in file to index in block index + int64_t sizeOfInputFile = 0; + // BLOCK + { + FileStream file(Filename); + // Get size of file + sizeOfInputFile = file.BytesLeftToRead(); + // Find all those lovely matching blocks + SearchForMatchingBlocks(file, foundBlocks, pindex, + blocksInIndex, sizesToScan, pDiffTimer); + + // Is it completely different? + completelyDifferent = (foundBlocks.size() == 0); + } + + // Create a recipe -- if the two files are completely different, don't put the from file ID in the recipe. + precipe = new BackupStoreFileEncodeStream::Recipe(pindex, blocksInIndex, completelyDifferent?(0):(DiffFromObjectID)); + BlocksAvailableEntry *pindexKeptRef = pindex; // we need this later, but must set pindex == 0 now, because of exceptions + pindex = 0; // Recipe now has ownership + + // Fill it in + GenerateRecipe(*precipe, pindexKeptRef, blocksInIndex, foundBlocks, sizeOfInputFile); + } + // foundBlocks no longer required + + // Create the stream + std::auto_ptr stream(new BackupStoreFileEncodeStream); + + // Do the initial setup + ((BackupStoreFileEncodeStream*)stream.get())->Setup(Filename, precipe, ContainerID, rStoreFilename, pModificationTime); + precipe = 0; // Stream has taken ownership of this + + // Tell user about completely different status? + if(pIsCompletelyDifferent != 0) + { + *pIsCompletelyDifferent = completelyDifferent; + } + + // Return the stream for the caller + return stream; + } + catch(...) + { + // cleanup + if(pindex != 0) + { + ::free(pindex); + pindex = 0; + } + if(precipe != 0) + { + delete precipe; + precipe = 0; + } + throw; + } +} + +// -------------------------------------------------------------------------- +// +// Function +// Name: static LoadIndex(IOStream &, int64_t, BlocksAvailableEntry **, int64_t, bool &) +// Purpose: Read in an index, and decrypt, and store in the in memory block format. +// rCanDiffFromThis is set to false if the version of the from file is too old. +// Created: 12/1/04 +// +// -------------------------------------------------------------------------- +static void LoadIndex(IOStream &rBlockIndex, int64_t ThisID, BlocksAvailableEntry **ppIndex, int64_t &rNumBlocksOut, int Timeout, bool &rCanDiffFromThis) +{ + // Reset + rNumBlocksOut = 0; + rCanDiffFromThis = false; + + // Read header + file_BlockIndexHeader hdr; + if(!rBlockIndex.ReadFullBuffer(&hdr, sizeof(hdr), 0 /* not interested in bytes read if this fails */, Timeout)) + { + // Couldn't read header + THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) + } + +#ifndef BOX_DISABLE_BACKWARDS_COMPATIBILITY_BACKUPSTOREFILE + // Check against backwards comptaibility stuff + if(hdr.mMagicValue == (int32_t)htonl(OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V0)) + { + // Won't diff against old version + + // Absorb rest of stream + char buffer[2048]; + while(rBlockIndex.StreamDataLeft()) + { + rBlockIndex.Read(buffer, sizeof(buffer), 1000 /* 1 sec timeout */); + } + + // Tell caller + rCanDiffFromThis = false; + return; + } +#endif + + // Check magic + if(hdr.mMagicValue != (int32_t)htonl(OBJECTMAGIC_FILE_BLOCKS_MAGIC_VALUE_V1)) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + + // Check that we're not trying to diff against a file which references blocks from another file + if(((int64_t)box_ntoh64(hdr.mOtherFileID)) != 0) + { + THROW_EXCEPTION(BackupStoreException, CannotDiffAnIncompleteStoreFile) + } + + // Mark as an acceptable diff. + rCanDiffFromThis = true; + + // Get basic information + int64_t numBlocks = box_ntoh64(hdr.mNumBlocks); + uint64_t entryIVBase = box_ntoh64(hdr.mEntryIVBase); + + //TODO: Verify that these sizes look reasonable + + // Allocate space for the index + BlocksAvailableEntry *pindex = (BlocksAvailableEntry*)::malloc(sizeof(BlocksAvailableEntry) * numBlocks); + if(pindex == 0) + { + throw std::bad_alloc(); + } + + try + { + for(int64_t b = 0; b < numBlocks; ++b) + { + // Read an entry from the stream + file_BlockIndexEntry entry; + if(!rBlockIndex.ReadFullBuffer(&entry, sizeof(entry), 0 /* not interested in bytes read if this fails */, Timeout)) + { + // Couldn't read entry + THROW_EXCEPTION(BackupStoreException, CouldntReadEntireStructureFromStream) + } + + // Calculate IV for this entry + uint64_t iv = entryIVBase; + iv += b; + // Network byte order + iv = box_hton64(iv); + sBlowfishDecryptBlockEntry.SetIV(&iv); + + // Decrypt the encrypted section + file_BlockIndexEntryEnc entryEnc; + int sectionSize = sBlowfishDecryptBlockEntry.TransformBlock(&entryEnc, sizeof(entryEnc), + entry.mEnEnc, sizeof(entry.mEnEnc)); + if(sectionSize != sizeof(entryEnc)) + { + THROW_EXCEPTION(BackupStoreException, BlockEntryEncodingDidntGiveExpectedLength) + } + + // Check that we're not trying to diff against a file which references blocks from another file + if(((int64_t)box_ntoh64(entry.mEncodedSize)) <= 0) + { + THROW_EXCEPTION(BackupStoreException, CannotDiffAnIncompleteStoreFile) + } + + // Store all the required information + pindex[b].mpNextInHashList = 0; // hash list not set up yet + pindex[b].mSize = ntohl(entryEnc.mSize); + pindex[b].mWeakChecksum = ntohl(entryEnc.mWeakChecksum); + ::memcpy(pindex[b].mStrongChecksum, entryEnc.mStrongChecksum, sizeof(pindex[b].mStrongChecksum)); + } + + // Store index pointer for called + ASSERT(ppIndex != 0); + *ppIndex = pindex; + + // Store number of blocks for caller + rNumBlocksOut = numBlocks; + + } + catch(...) + { + // clean up and send the exception along its way + ::free(pindex); + throw; + } +} + + +// -------------------------------------------------------------------------- +// +// Function +// Name: static FindMostUsedSizes(BlocksAvailableEntry *, int64_t, int32_t[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES]) +// Purpose: Finds the most commonly used block sizes in the index +// Created: 12/1/04 +// +// -------------------------------------------------------------------------- +static void FindMostUsedSizes(BlocksAvailableEntry *pIndex, int64_t NumBlocks, int32_t Sizes[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES]) +{ + // Array for lengths + int64_t sizeCounts[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES]; + + // Set arrays to lots of zeros (= unused entries) + for(int l = 0; l < BACKUP_FILE_DIFF_MAX_BLOCK_SIZES; ++l) + { + Sizes[l] = 0; + sizeCounts[l] = 0; + } + + // Array for collecting sizes + std::map foundSizes; + + // Run through blocks and make a count of the entries + for(int64_t b = 0; b < NumBlocks; ++b) + { + // Only if the block size is bigger than the minimum size we'll scan for + if(pIndex[b].mSize > BACKUP_FILE_DIFF_MIN_BLOCK_SIZE) + { + // Find entry? + std::map::const_iterator f(foundSizes.find(pIndex[b].mSize)); + if(f != foundSizes.end()) + { + // Increment existing entry + foundSizes[pIndex[b].mSize] = foundSizes[pIndex[b].mSize] + 1; + } + else + { + // New entry + foundSizes[pIndex[b].mSize] = 1; + } + } + } + + // Make the block sizes + for(std::map::const_iterator i(foundSizes.begin()); i != foundSizes.end(); ++i) + { + // Find the position of the size in the array + for(int t = 0; t < BACKUP_FILE_DIFF_MAX_BLOCK_SIZES; ++t) + { + // Instead of sorting on the raw count of blocks, + // take the file area covered by this block size. + if(i->second * i->first > sizeCounts[t] * Sizes[t]) + { + // Then this size belong before this entry -- shuffle them up + for(int s = (BACKUP_FILE_DIFF_MAX_BLOCK_SIZES - 1); s >= t; --s) + { + Sizes[s] = Sizes[s-1]; + sizeCounts[s] = sizeCounts[s-1]; + } + + // Insert this size + Sizes[t] = i->first; + sizeCounts[t] = i->second; + + // Shouldn't do any more searching + break; + } + } + } + + // trace the size table in debug builds +#ifndef BOX_RELEASE_BUILD + if(BackupStoreFile::TraceDetailsOfDiffProcess) + { + for(int t = 0; t < BACKUP_FILE_DIFF_MAX_BLOCK_SIZES; ++t) + { + BOX_TRACE("Diff block size " << t << ": " << + Sizes[t] << " (count = " << + sizeCounts[t] << ")"); + } + } +#endif +} + + + +// -------------------------------------------------------------------------- +// +// Function +// Name: static SearchForMatchingBlocks(IOStream &, std::map &, BlocksAvailableEntry *, int64_t, int32_t[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES]) +// Purpose: Find the matching blocks within the file. +// Created: 12/1/04 +// +// -------------------------------------------------------------------------- +static void SearchForMatchingBlocks(IOStream &rFile, std::map &rFoundBlocks, + BlocksAvailableEntry *pIndex, int64_t NumBlocks, + int32_t Sizes[BACKUP_FILE_DIFF_MAX_BLOCK_SIZES], DiffTimer *pDiffTimer) +{ + Timer maximumDiffingTime(0, "MaximumDiffingTime"); + + if(pDiffTimer && pDiffTimer->IsManaged()) + { + maximumDiffingTime = Timer(pDiffTimer->GetMaximumDiffingTime(), + "MaximumDiffingTime"); + } + + std::map goodnessOfFit; + + // Allocate the hash lookup table + BlocksAvailableEntry **phashTable = (BlocksAvailableEntry **)::malloc(sizeof(BlocksAvailableEntry *) * (64*1024)); + + // Choose a size for the buffer, just a little bit more than the maximum block size + int32_t bufSize = Sizes[0]; + for(int z = 1; z < BACKUP_FILE_DIFF_MAX_BLOCK_SIZES; ++z) + { + if(Sizes[z] > bufSize) bufSize = Sizes[z]; + } + bufSize += 4; + ASSERT(bufSize > Sizes[0]); + ASSERT(bufSize > 0); + if(bufSize > (BACKUP_FILE_MAX_BLOCK_SIZE + 1024)) + { + THROW_EXCEPTION(BackupStoreException, BadBackupStoreFile) + } + + // TODO: Because we read in the file a scanned block size at a time, + // it is likely to be inefficient. Probably will be much better to + // calculate checksums for all block sizes in a single pass. + + // Allocate the buffers. + uint8_t *pbuffer0 = (uint8_t *)::malloc(bufSize); + uint8_t *pbuffer1 = (uint8_t *)::malloc(bufSize); + try + { + // Check buffer allocation + if(pbuffer0 == 0 || pbuffer1 == 0 || phashTable == 0) + { + // If a buffer got allocated, it will be cleaned up in the catch block + throw std::bad_alloc(); + } + + // Flag to abort the run, if too many blocks are found -- avoid using + // huge amounts of processor time when files contain many similar blocks. + bool abortSearch = false; + + // Search for each block size in turn + // NOTE: Do the smallest size first, so that the scheme for adding + // entries in the found list works as expected and replaces smallers block + // with larger blocks when it finds matches at the same offset in the file. + for(int s = BACKUP_FILE_DIFF_MAX_BLOCK_SIZES - 1; s >= 0; --s) + { + ASSERT(Sizes[s] <= bufSize); + BOX_TRACE("Diff pass " << s << ", for block size " << + Sizes[s]); + + // Check we haven't finished + if(Sizes[s] == 0) + { + // empty entry, try next size + continue; + } + + // Set up the hash table entries + SetupHashTable(pIndex, NumBlocks, Sizes[s], phashTable); + + // Shift file position to beginning + rFile.Seek(0, IOStream::SeekType_Absolute); + + // Read first block + if(rFile.Read(pbuffer0, Sizes[s]) != Sizes[s]) + { + // Size of file too short to match -- do next size + continue; + } + + // Setup block pointers + uint8_t *beginnings = pbuffer0; + uint8_t *endings = pbuffer1; + int offset = 0; + + // Calculate the first checksum, ready for rolling + RollingChecksum rolling(beginnings, Sizes[s]); + + // Then roll, until the file is exhausted + int64_t fileBlockNumber = 0; + int64_t fileOffset = 0; + int rollOverInitialBytes = 0; + while(true) + { + if(maximumDiffingTime.HasExpired()) + { + ASSERT(pDiffTimer != NULL); + BOX_INFO("MaximumDiffingTime reached - " + "suspending file diff"); + abortSearch = true; + break; + } + + if(pDiffTimer) + { + pDiffTimer->DoKeepAlive(); + } + + // Load in another block of data, and record how big it is + int bytesInEndings = rFile.Read(endings, Sizes[s]); + int tmp; + + // Skip any bytes from a previous matched block + if(rollOverInitialBytes > 0 && offset < bytesInEndings) + { + int spaceLeft = bytesInEndings - offset; + int thisRoll = (rollOverInitialBytes > spaceLeft) ? spaceLeft : rollOverInitialBytes; + + rolling.RollForwardSeveral(beginnings+offset, endings+offset, Sizes[s], thisRoll); + + offset += thisRoll; + fileOffset += thisRoll; + rollOverInitialBytes -= thisRoll; + + if(rollOverInitialBytes) + { + goto refresh; + } + } + + if(goodnessOfFit.count(fileOffset)) + { + tmp = goodnessOfFit[fileOffset]; + } + else + { + tmp = 0; + } + + if(tmp >= Sizes[s]) + { + // Skip over bigger ready-matched blocks completely + rollOverInitialBytes = tmp; + int spaceLeft = bytesInEndings - offset; + int thisRoll = (rollOverInitialBytes > spaceLeft) ? spaceLeft : rollOverInitialBytes; + + rolling.RollForwardSeveral(beginnings+offset, endings+offset, Sizes[s], thisRoll); + + offset += thisRoll; + fileOffset += thisRoll; + rollOverInitialBytes -= thisRoll; + + if(rollOverInitialBytes) + { + goto refresh; + } + } + + while(offset < bytesInEndings) + { + // Is current checksum in hash list? + uint16_t hash = rolling.GetComponentForHashing(); + if(phashTable[hash] != 0 && (goodnessOfFit.count(fileOffset) == 0 || goodnessOfFit[fileOffset] < Sizes[s])) + { + if(SecondStageMatch(phashTable[hash], rolling, beginnings, endings, offset, Sizes[s], fileBlockNumber, pIndex, rFoundBlocks)) + { + BOX_TRACE("Found block match for " << hash << " of " << Sizes[s] << " bytes at offset " << fileOffset); + goodnessOfFit[fileOffset] = Sizes[s]; + + // Block matched, roll the checksum forward to the next block without doing + // any more comparisons, because these are pointless (as any more matches will be ignored when + // the recipe is generated) and just take up valuable processor time. Edge cases are + // especially nasty, using huge amounts of time and memory. + int skip = Sizes[s]; + if(offset < bytesInEndings && skip > 0) + { + int spaceLeft = bytesInEndings - offset; + int thisRoll = (skip > spaceLeft) ? spaceLeft : skip; + + rolling.RollForwardSeveral(beginnings+offset, endings+offset, Sizes[s], thisRoll); + + offset += thisRoll; + fileOffset += thisRoll; + skip -= thisRoll; + } + // Not all the bytes necessary will have been skipped, so get them + // skipped after the next block is loaded. + rollOverInitialBytes = skip; + + // End this loop, so the final byte isn't used again + break; + } + else + { + BOX_TRACE("False alarm match for " << hash << " of " << Sizes[s] << " bytes at offset " << fileOffset); + } + + int64_t NumBlocksFound = static_cast( + rFoundBlocks.size()); + int64_t MaxBlocksFound = NumBlocks * + BACKUP_FILE_DIFF_MAX_BLOCK_FIND_MULTIPLE; + + if(NumBlocksFound > MaxBlocksFound) + { + abortSearch = true; + break; + } + } + + // Roll checksum forward + rolling.RollForward(beginnings[offset], endings[offset], Sizes[s]); + + // Increment offsets + ++offset; + ++fileOffset; + } + + if(abortSearch) break; + + refresh: + // Finished? + if(bytesInEndings != Sizes[s]) + { + // No more data in file -- check the final block + // (Do a copy and paste of 5 lines of code instead of introducing a comparison for + // each byte of the file) + uint16_t hash = rolling.GetComponentForHashing(); + if(phashTable[hash] != 0 && (goodnessOfFit.count(fileOffset) == 0 || goodnessOfFit[fileOffset] < Sizes[s])) + { + if(SecondStageMatch(phashTable[hash], rolling, beginnings, endings, offset, Sizes[s], fileBlockNumber, pIndex, rFoundBlocks)) + { + goodnessOfFit[fileOffset] = Sizes[s]; + } + } + + // finish + break; + } + + // Switch buffers, reset offset + beginnings = endings; + endings = (beginnings == pbuffer0)?(pbuffer1):(pbuffer0); // ie the other buffer + offset = 0; + + // And count the blocks which have been done + ++fileBlockNumber; + } + + if(abortSearch) break; + } + + // Free buffers and hash table + ::free(pbuffer1); + pbuffer1 = 0; + ::free(pbuffer0); + pbuffer0 = 0; + ::free(phashTable); + phashTable = 0; + } + catch(...) + { + // Cleanup and throw + if(pbuffer1 != 0) ::free(pbuffer1); + if(pbuffer0 != 0) ::free(pbuffer0); + if(phashTable != 0) ::free(phashTable); + throw; + } + +#ifndef BOX_RELEASE_BUILD + if(BackupStoreFile::TraceDetailsOfDiffProcess) + { + // Trace out the found blocks in debug mode + BOX_TRACE("Diff: list of found blocks"); + BOX_TRACE("======== ======== ======== ========"); + BOX_TRACE(" Offset BlkIdx Size Movement"); + for(std::map::const_iterator i(rFoundBlocks.begin()); i != rFoundBlocks.end(); ++i) + { + int64_t orgLoc = 0; + for(int64_t b = 0; b < i->second; ++b) + { + orgLoc += pIndex[b].mSize; + } + BOX_TRACE(std::setw(8) << i->first << " " << + std::setw(8) << i->second << " " << + std::setw(8) << pIndex[i->second].mSize << + " " << + std::setw(8) << (i->first - orgLoc)); + } + BOX_TRACE("======== ======== ======== ========"); + } +#endif +} + + +// -------------------------------------------------------------------------- +// +// Function +// Name: static SetupHashTable(BlocksAvailableEntry *, int64_t, in32_t, BlocksAvailableEntry **) +// Purpose: Set up the hash table ready for a scan +// Created: 14/1/04 +// +// -------------------------------------------------------------------------- +static void SetupHashTable(BlocksAvailableEntry *pIndex, int64_t NumBlocks, int32_t BlockSize, BlocksAvailableEntry **pHashTable) +{ + // Set all entries in the hash table to zero + ::memset(pHashTable, 0, (sizeof(BlocksAvailableEntry *) * (64*1024))); + + // Scan through the blocks, building the hash table + for(int64_t b = 0; b < NumBlocks; ++b) + { + // Only look at the required block size + if(pIndex[b].mSize == BlockSize) + { + // Get the value under which to hash this entry + uint16_t hash = RollingChecksum::ExtractHashingComponent(pIndex[b].mWeakChecksum); + + // Already present in table? + if(pHashTable[hash] != 0) + { + //BOX_TRACE("Another hash entry for " << hash << " found"); + // Yes -- need to set the pointer in this entry to the current entry to build the linked list + pIndex[b].mpNextInHashList = pHashTable[hash]; + } + + // Put a pointer to this entry in the hash table + pHashTable[hash] = pIndex + b; + } + } +} + + +// -------------------------------------------------------------------------- +// +// Function +// Name: static bool SecondStageMatch(xxx) +// Purpose: When a match in the hash table is found, scan for second stage match using strong checksum. +// Created: 14/1/04 +// +// -------------------------------------------------------------------------- +static bool SecondStageMatch(BlocksAvailableEntry *pFirstInHashList, RollingChecksum &fastSum, uint8_t *pBeginnings, uint8_t *pEndings, + int Offset, int32_t BlockSize, int64_t FileBlockNumber, BlocksAvailableEntry *pIndex, std::map &rFoundBlocks) +{ + // Check parameters + ASSERT(pBeginnings != 0); + ASSERT(pEndings != 0); + ASSERT(Offset >= 0); + ASSERT(BlockSize > 0); + ASSERT(pFirstInHashList != 0); + ASSERT(pIndex != 0); + +#ifndef BOX_RELEASE_BUILD + uint16_t DEBUG_Hash = fastSum.GetComponentForHashing(); +#endif + uint32_t Checksum = fastSum.GetChecksum(); + + // Before we go to the expense of the MD5, make sure it's a darn good match on the checksum we already know. + BlocksAvailableEntry *scan = pFirstInHashList; + bool found=false; + while(scan != 0) + { + if(scan->mWeakChecksum == Checksum) + { + found = true; + break; + } + scan = scan->mpNextInHashList; + } + if(!found) + { + return false; + } + + // Calculate the strong MD5 digest for this block + MD5Digest strong; + // Add the data from the beginnings + strong.Add(pBeginnings + Offset, BlockSize - Offset); + // Add any data from the endings + if(Offset > 0) + { + strong.Add(pEndings, Offset); + } + strong.Finish(); + + // Then go through the entries in the hash list, comparing with the strong digest calculated + scan = pFirstInHashList; + //BOX_TRACE("second stage match"); + while(scan != 0) + { + //BOX_TRACE("scan size " << scan->mSize << + // ", block size " << BlockSize << + // ", hash " << Hash); + ASSERT(scan->mSize == BlockSize); + ASSERT(RollingChecksum::ExtractHashingComponent(scan->mWeakChecksum) == DEBUG_Hash); + + // Compare? + if(strong.DigestMatches(scan->mStrongChecksum)) + { + //BOX_TRACE("Match!\n"); + // Found! Add to list of found blocks... + int64_t fileOffset = (FileBlockNumber * BlockSize) + Offset; + int64_t blockIndex = (scan - pIndex); // pointer arthmitic is frowned upon. But most efficient way of doing it here -- alternative is to use more memory + + // We do NOT search for smallest blocks first, as this code originally assumed. + // To prevent this from potentially overwriting a better match, the caller must determine + // the relative "goodness" of any existing match and this one, and avoid the call if it + // could be detrimental. + rFoundBlocks[fileOffset] = blockIndex; + + // No point in searching further, report success + return true; + } + + // Next + scan = scan->mpNextInHashList; + } + + // Not matched + return false; +} + + +// -------------------------------------------------------------------------- +// +// Function +// Name: static GenerateRecipe(BackupStoreFileEncodeStream::Recipe &, BlocksAvailableEntry *, int64_t, std::map &) +// Purpose: Fills in the recipe from the found block list +// Created: 15/1/04 +// +// -------------------------------------------------------------------------- +static void GenerateRecipe(BackupStoreFileEncodeStream::Recipe &rRecipe, BlocksAvailableEntry *pIndex, + int64_t NumBlocks, std::map &rFoundBlocks, int64_t SizeOfInputFile) +{ + // NOTE: This function could be a lot more sophisiticated. For example, if + // a small block overlaps a big block like this + // **** + // ******************************* + // then the small block will be used, not the big one. But it'd be better to + // just ignore the small block and keep the big one. However, some stats should + // be gathered about real world files before writing complex code which might + // go wrong. + + // Initialise a blank instruction + BackupStoreFileEncodeStream::RecipeInstruction instruction; + #define RESET_INSTRUCTION \ + instruction.mSpaceBefore = 0; \ + instruction.mBlocks = 0; \ + instruction.mpStartBlock = 0; + RESET_INSTRUCTION + + // First, a special case for when there are no found blocks + if(rFoundBlocks.size() == 0) + { + // No blocks, just a load of space + instruction.mSpaceBefore = SizeOfInputFile; + rRecipe.push_back(instruction); + + #ifndef BOX_RELEASE_BUILD + if(BackupStoreFile::TraceDetailsOfDiffProcess) + { + BOX_TRACE("Diff: Default recipe generated, " << + SizeOfInputFile << " bytes of file"); + } + #endif + + // Don't do anything + return; + } + + // Current location + int64_t loc = 0; + + // Then iterate through the list, generating the recipe + std::map::const_iterator i(rFoundBlocks.begin()); + ASSERT(i != rFoundBlocks.end()); // check logic + + // Counting for debug tracing +#ifndef BOX_RELEASE_BUILD + int64_t debug_NewBytesFound = 0; + int64_t debug_OldBlocksUsed = 0; +#endif + + for(; i != rFoundBlocks.end(); ++i) + { + // Remember... map is (position in file) -> (index of block in pIndex) + + if(i->first < loc) + { + // This block overlaps the last one + continue; + } + else if(i->first > loc) + { + // There's a gap between the end of the last thing and this block. + // If there's an instruction waiting, push it onto the list + if(instruction.mSpaceBefore != 0 || instruction.mpStartBlock != 0) + { + rRecipe.push_back(instruction); + } + // Start a new instruction, with the gap ready + RESET_INSTRUCTION + instruction.mSpaceBefore = i->first - loc; + // Move location forward to match + loc += instruction.mSpaceBefore; +#ifndef BOX_RELEASE_BUILD + debug_NewBytesFound += instruction.mSpaceBefore; +#endif + } + + // First, does the current instruction need pushing back, because this block is not + // sequential to the last one? + if(instruction.mpStartBlock != 0 && (pIndex + i->second) != (instruction.mpStartBlock + instruction.mBlocks)) + { + rRecipe.push_back(instruction); + RESET_INSTRUCTION + } + + // Add in this block + if(instruction.mpStartBlock == 0) + { + // This block starts a new instruction + instruction.mpStartBlock = pIndex + i->second; + instruction.mBlocks = 1; + } + else + { + // It continues the previous section of blocks + instruction.mBlocks += 1; + } + +#ifndef BOX_RELEASE_BUILD + debug_OldBlocksUsed++; +#endif + + // Move location forward + loc += pIndex[i->second].mSize; + } + + // Push the last instruction generated + rRecipe.push_back(instruction); + + // Is there any space left at the end which needs sending? + if(loc != SizeOfInputFile) + { + RESET_INSTRUCTION + instruction.mSpaceBefore = SizeOfInputFile - loc; +#ifndef BOX_RELEASE_BUILD + debug_NewBytesFound += instruction.mSpaceBefore; +#endif + rRecipe.push_back(instruction); + } + + // dump out the recipe +#ifndef BOX_RELEASE_BUILD + BOX_TRACE("Diff: " << + debug_NewBytesFound << " new bytes found, " << + debug_OldBlocksUsed << " old blocks used"); + if(BackupStoreFile::TraceDetailsOfDiffProcess) + { + BOX_TRACE("Diff: Recipe generated (size " << rRecipe.size()); + BOX_TRACE("======== ========= ========"); + BOX_TRACE("Space b4 FirstBlk NumBlks"); + { + for(unsigned int e = 0; e < rRecipe.size(); ++e) + { + char b[64]; +#ifdef WIN32 + sprintf(b, "%8I64d", (int64_t)(rRecipe[e].mpStartBlock - pIndex)); +#else + sprintf(b, "%8lld", (int64_t)(rRecipe[e].mpStartBlock - pIndex)); +#endif + BOX_TRACE(std::setw(8) << + rRecipe[e].mSpaceBefore << + " " << + ((rRecipe[e].mpStartBlock == 0)?" -":b) << + " " << std::setw(8) << + rRecipe[e].mBlocks); + } + } + BOX_TRACE("======== ========= ========"); + } +#endif +} Modified: box/trunk/modules.txt =================================================================== --- box/trunk/modules.txt 2011-05-24 13:33:50 UTC (rev 2962) +++ box/trunk/modules.txt 2011-05-24 15:08:59 UTC (rev 2963) @@ -29,7 +29,7 @@ lib/backupclient lib/backupstore bin/bbackupobjdump lib/backupclient lib/backupstore -bin/bbstored lib/raidfile lib/server lib/backupstore lib/backupclient +bin/bbstored lib/raidfile lib/server lib/backupstore bin/bbstoreaccounts lib/raidfile lib/backupstore bin/bbackupd lib/server lib/backupclient qdbm bin/bbackupquery lib/server lib/backupclient From subversion at boxbackup.org Tue May 24 16:25:37 2011 From: subversion at boxbackup.org (subversion at boxbackup.org) Date: Tue, 24 May 2011 16:25:37 +0100 (BST) Subject: [Box Backup-commit] COMMIT r2964 - box/trunk/infrastructure/msvc/2010 Message-ID: <20110524152537.0C89818DAD3@www.boxbackup.org> Author: chris Date: 2011-05-24 16:25:36 +0100 (Tue, 24 May 2011) New Revision: 2964 Added: box/trunk/infrastructure/msvc/2010/libbackupclient.vcxproj Modified: box/trunk/infrastructure/msvc/2010/bbackupctl.vcxproj box/trunk/infrastructure/msvc/2010/bbackupd.vcxproj box/trunk/infrastructure/msvc/2010/bbstoreaccounts.vcxproj box/trunk/infrastructure/msvc/2010/bbstored.vcxproj box/trunk/infrastructure/msvc/2010/boxbackup.sln box/trunk/infrastructure/msvc/2010/boxquery.vcxproj box/trunk/infrastructure/msvc/2010/common.vcxproj box/trunk/infrastructure/msvc/2010/libbackupstore.vcxproj box/trunk/infrastructure/msvc/2010/qdbm.vcxproj box/trunk/infrastructure/msvc/2010/win32test.vcxproj Log: Fix MSVC 2010 project for new file locations. Separate libbackupclient files out of libcommon. Silence CRT deprecation warnings in QDBM build. Modified: box/trunk/infrastructure/msvc/2010/bbackupctl.vcxproj =================================================================== --- box/trunk/infrastructure/msvc/2010/bbackupctl.vcxproj 2011-05-24 15:08:59 UTC (rev 2963) +++ box/trunk/infrastructure/msvc/2010/bbackupctl.vcxproj 2011-05-24 15:25:36 UTC (rev 2964) @@ -49,7 +49,7 @@ Disabled $(ProjectDir)..\..\..\lib\backupclient;$(ProjectDir)..\..\..\lib\common;$(ProjectDir)..\..\..\lib\compress;$(ProjectDir)..\..\..\lib\crypto;$(ProjectDir)..\..\..\lib\server;$(ProjectDir)..\..\..\lib\win32;$(ProjectDir)..\..\..\..\openssl\include;$(ProjectDir)..\..\..\..\zlib\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_LIB;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;QDBM_STATIC;%(PreprocessorDefinitions) true EnableFastChecks MultiThreadedDebug @@ -99,6 +99,9 @@ {a089cee6-ebf0-4232-a0c0-74850a8127a6} false + + {32604097-c934-4711-b1ad-206336640e70} + Modified: box/trunk/infrastructure/msvc/2010/bbackupd.vcxproj =================================================================== --- box/trunk/infrastructure/msvc/2010/bbackupd.vcxproj 2011-05-24 15:08:59 UTC (rev 2963) +++ box/trunk/infrastructure/msvc/2010/bbackupd.vcxproj 2011-05-24 15:25:36 UTC (rev 2964) @@ -50,8 +50,8 @@ Disabled - $(SolutionDir)..\..\..\lib\backupclient;$(SolutionDir)..\..\..\lib\common;$(SolutionDir)..\..\..\lib\compress;$(SolutionDir)..\..\..\lib\crypto;$(SolutionDir)..\..\..\lib\server;$(SolutionDir)..\..\..\lib\win32;$(SolutionDir)..\..\..\qdbm;$(SolutionDir)..\..\..\..\openssl\include;$(SolutionDir)..\..\..\..\zlib\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;ENABLE_VSS;%(PreprocessorDefinitions) + $(SolutionDir)..\..\..\lib\backupstore;$(SolutionDir)..\..\..\lib\backupclient;$(SolutionDir)..\..\..\lib\common;$(SolutionDir)..\..\..\lib\compress;$(SolutionDir)..\..\..\lib\crypto;$(SolutionDir)..\..\..\lib\server;$(SolutionDir)..\..\..\lib\win32;$(SolutionDir)..\..\..\qdbm;$(SolutionDir)..\..\..\..\openssl\include;$(SolutionDir)..\..\..\..\zlib\include;%(AdditionalIncludeDirectories) + ENABLE_VSS;WIN32;_DEBUG;_LIB;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;QDBM_STATIC;%(PreprocessorDefinitions) true EnableFastChecks MultiThreadedDebug @@ -61,7 +61,7 @@ EditAndContinue - VssApi.lib;%(AdditionalDependencies) + VssApi.lib;$(OutDir)\libbackupclient.lib;$(OutDir)\libbackupstore.lib;%(AdditionalDependencies) true $(OutDir)bbackupd.pdb Console Modified: box/trunk/infrastructure/msvc/2010/bbstoreaccounts.vcxproj =================================================================== --- box/trunk/infrastructure/msvc/2010/bbstoreaccounts.vcxproj 2011-05-24 15:08:59 UTC (rev 2963) +++ box/trunk/infrastructure/msvc/2010/bbstoreaccounts.vcxproj 2011-05-24 15:25:36 UTC (rev 2964) @@ -47,7 +47,7 @@ Level3 Disabled $(SolutionDir)..\..\..\lib\backupclient;$(SolutionDir)..\..\..\lib\backupstore;$(SolutionDir)..\..\..\lib\raidfile;$(SolutionDir)..\..\..\lib\common;$(SolutionDir)..\..\..\lib\compress;$(SolutionDir)..\..\..\lib\crypto;$(SolutionDir)..\..\..\lib\server;$(SolutionDir)..\..\..\lib\win32;$(SolutionDir)..\..\..\qdbm;$(SolutionDir)..\..\..\..\openssl\include;$(SolutionDir)..\..\..\..\zlib\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_LIB;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;QDBM_STATIC;%(PreprocessorDefinitions) MultiThreadedDebug Modified: box/trunk/infrastructure/msvc/2010/bbstored.vcxproj =================================================================== --- box/trunk/infrastructure/msvc/2010/bbstored.vcxproj 2011-05-24 15:08:59 UTC (rev 2963) +++ box/trunk/infrastructure/msvc/2010/bbstored.vcxproj 2011-05-24 15:25:36 UTC (rev 2964) @@ -46,7 +46,7 @@ Level3 Disabled - WIN32;_DEBUG;_CONSOLE;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_LIB;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;QDBM_STATIC;%(PreprocessorDefinitions) MultiThreadedDebug $(SolutionDir)..\..\..\lib\backupclient;$(SolutionDir)..\..\..\lib\backupstore;$(SolutionDir)..\..\..\lib\raidfile;$(SolutionDir)..\..\..\lib\common;$(SolutionDir)..\..\..\lib\compress;$(SolutionDir)..\..\..\lib\crypto;$(SolutionDir)..\..\..\lib\server;$(SolutionDir)..\..\..\lib\win32;$(SolutionDir)..\..\..\qdbm;$(SolutionDir)..\..\..\..\openssl\include;$(SolutionDir)..\..\..\..\zlib\include;%(AdditionalIncludeDirectories) @@ -68,28 +68,26 @@ - - - + + {a089cee6-ebf0-4232-a0c0-74850a8127a6} + + + {97d89aef-2be4-4e34-8703-03ba67bf4494} + + + - - - - - {a089cee6-ebf0-4232-a0c0-74850a8127a6} - - - {97d89aef-2be4-4e34-8703-03ba67bf4494} - + + Modified: box/trunk/infrastructure/msvc/2010/boxbackup.sln =================================================================== --- box/trunk/infrastructure/msvc/2010/boxbackup.sln 2011-05-24 15:08:59 UTC (rev 2963) +++ box/trunk/infrastructure/msvc/2010/boxbackup.sln 2011-05-24 15:25:36 UTC (rev 2964) @@ -1,17 +1,30 @@ Microsoft Visual Studio Solution File, Format Version 11.00 # Visual C++ Express 2010 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bbackupquery", "boxquery.vcxproj", "{FE9EC666-4B3A-4370-B3D4-DEBD4A21F36E}" + ProjectSection(ProjectDependencies) = postProject + {32604097-C934-4711-B1AD-206336640E70} = {32604097-C934-4711-B1AD-206336640E70} + {97D89AEF-2BE4-4E34-8703-03BA67BF4494} = {97D89AEF-2BE4-4E34-8703-03BA67BF4494} + EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "common", "common.vcxproj", "{A089CEE6-EBF0-4232-A0C0-74850A8127A6}" + ProjectSection(ProjectDependencies) = postProject + {72AF22A7-B339-4FDF-B6AE-CA6522D4BB8D} = {72AF22A7-B339-4FDF-B6AE-CA6522D4BB8D} + EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bbackupd", "bbackupd.vcxproj", "{22D325FB-9131-4BD6-B390-968F0491D687}" ProjectSection(ProjectDependencies) = postProject + {32604097-C934-4711-B1AD-206336640E70} = {32604097-C934-4711-B1AD-206336640E70} {72AF22A7-B339-4FDF-B6AE-CA6522D4BB8D} = {72AF22A7-B339-4FDF-B6AE-CA6522D4BB8D} + {97D89AEF-2BE4-4E34-8703-03BA67BF4494} = {97D89AEF-2BE4-4E34-8703-03BA67BF4494} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "win32test", "win32test.vcxproj", "{28C29E72-76A2-4D0C-B35B-12D446733D2E}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bbackupctl", "bbackupctl.vcxproj", "{9FD51412-E945-4457-A17A-CA3C505CF431}" + ProjectSection(ProjectDependencies) = postProject + {32604097-C934-4711-B1AD-206336640E70} = {32604097-C934-4711-B1AD-206336640E70} + {97D89AEF-2BE4-4E34-8703-03BA67BF4494} = {97D89AEF-2BE4-4E34-8703-03BA67BF4494} + EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qdbm", "qdbm.vcxproj", "{72AF22A7-B339-4FDF-B6AE-CA6522D4BB8D}" EndProject @@ -21,6 +34,8 @@ EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bbstoreaccounts", "bbstoreaccounts.vcxproj", "{C8A1509C-F91B-4140-BD51-B87FF24FB95F}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libbackupclient", "libbackupclient.vcxproj", "{32604097-C934-4711-B1AD-206336640E70}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 @@ -63,6 +78,10 @@ {C8A1509C-F91B-4140-BD51-B87FF24FB95F}.Debug|Win32.Build.0 = Debug|Win32 {C8A1509C-F91B-4140-BD51-B87FF24FB95F}.Release|Win32.ActiveCfg = Release|Win32 {C8A1509C-F91B-4140-BD51-B87FF24FB95F}.Release|Win32.Build.0 = Release|Win32 + {32604097-C934-4711-B1AD-206336640E70}.Debug|Win32.ActiveCfg = Debug|Win32 + {32604097-C934-4711-B1AD-206336640E70}.Debug|Win32.Build.0 = Debug|Win32 + {32604097-C934-4711-B1AD-206336640E70}.Release|Win32.ActiveCfg = Release|Win32 + {32604097-C934-4711-B1AD-206336640E70}.Release|Win32.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE Modified: box/trunk/infrastructure/msvc/2010/boxquery.vcxproj =================================================================== --- box/trunk/infrastructure/msvc/2010/boxquery.vcxproj 2011-05-24 15:08:59 UTC (rev 2963) +++ box/trunk/infrastructure/msvc/2010/boxquery.vcxproj 2011-05-24 15:25:36 UTC (rev 2964) @@ -49,8 +49,8 @@ Disabled - $(ProjectDir)..\..\..\lib\backupclient;$(ProjectDir)..\..\..\lib\common;$(ProjectDir)..\..\..\lib\compress;$(ProjectDir)..\..\..\lib\crypto;$(ProjectDir)..\..\..\lib\server;$(ProjectDir)..\..\..\lib\win32;$(ProjectDir)..\..\..\..\pcre;$(ProjectDir)..\..\..\..\openssl\include;$(ProjectDir)..\..\..\..\zlib\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;%(PreprocessorDefinitions) + $(ProjectDir)..\..\..\lib\backupstore;$(ProjectDir)..\..\..\lib\backupclient;$(ProjectDir)..\..\..\lib\common;$(ProjectDir)..\..\..\lib\compress;$(ProjectDir)..\..\..\lib\crypto;$(ProjectDir)..\..\..\lib\server;$(ProjectDir)..\..\..\lib\win32;$(ProjectDir)..\..\..\..\pcre;$(ProjectDir)..\..\..\..\openssl\include;$(ProjectDir)..\..\..\..\zlib\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_LIB;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;QDBM_STATIC;%(PreprocessorDefinitions) true EnableFastChecks MultiThreadedDebug @@ -110,6 +110,12 @@ {a089cee6-ebf0-4232-a0c0-74850a8127a6} false + + {32604097-c934-4711-b1ad-206336640e70} + + + {97d89aef-2be4-4e34-8703-03ba67bf4494} + Modified: box/trunk/infrastructure/msvc/2010/common.vcxproj =================================================================== --- box/trunk/infrastructure/msvc/2010/common.vcxproj 2011-05-24 15:08:59 UTC (rev 2963) +++ box/trunk/infrastructure/msvc/2010/common.vcxproj 2011-05-24 15:25:36 UTC (rev 2964) @@ -50,8 +50,8 @@ Disabled - $(ProjectDir)..\..\..\lib\backupclient;$(ProjectDir)..\..\..\lib\common;$(ProjectDir)..\..\..\lib\compress;$(ProjectDir)..\..\..\lib\crypto;$(ProjectDir)..\..\..\lib\server;$(ProjectDir)..\..\..\lib\raidfile;$(ProjectDir)..\..\..\lib\win32;$(ProjectDir)..\..\..\..\openssl\include;$(ProjectDir)..\..\..\..\zlib\include;$(ProjectDir)..\..\..\..\pcre - WIN32;_DEBUG;_LIB;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;%(PreprocessorDefinitions) + $(ProjectDir)..\..\..\qdbm;$(ProjectDir)..\..\..\lib\common;$(ProjectDir)..\..\..\lib\compress;$(ProjectDir)..\..\..\lib\crypto;$(ProjectDir)..\..\..\lib\server;$(ProjectDir)..\..\..\lib\win32;$(ProjectDir)..\..\..\..\openssl\include;$(ProjectDir)..\..\..\..\zlib\include;$(ProjectDir)..\..\..\..\pcre + WIN32;_DEBUG;_LIB;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;QDBM_STATIC;%(PreprocessorDefinitions) true EnableFastChecks MultiThreadedDebug @@ -78,7 +78,7 @@ true - $(ProjectDir)..\..\..\lib\backupclient;$(ProjectDir)..\..\..\lib\common\;$(ProjectDir)..\..\..\lib\compress;$(ProjectDir)..\..\..\lib\crypto;$(ProjectDir)..\..\..\lib\server;$(ProjectDir)..\..\..\lib\win32;$(ProjectDir)..\..\..\..\openssl\inc32;$(ProjectDir)..\..\..\..\zlib\include;$(ProjectDir)..\..\..\..\pcre\pcre-6.7\;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\..\lib\common\;$(ProjectDir)..\..\..\lib\compress;$(ProjectDir)..\..\..\lib\crypto;$(ProjectDir)..\..\..\lib\server;$(ProjectDir)..\..\..\lib\win32;$(ProjectDir)..\..\..\..\openssl\inc32;$(ProjectDir)..\..\..\..\zlib\include;$(ProjectDir)..\..\..\..\pcre\pcre-6.7\;%(AdditionalIncludeDirectories) WIN32;BOX_RELEASE_BUILD;_LIB;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;%(PreprocessorDefinitions) MultiThreaded false @@ -95,6 +95,7 @@ + @@ -128,25 +129,6 @@ - - - - - - - - - - - - - - - - - - - @@ -174,6 +156,7 @@ + @@ -225,23 +208,6 @@ - - - - - - - - - - - - - - - - - @@ -271,6 +237,11 @@ + + + {72af22a7-b339-4fdf-b6ae-ca6522d4bb8d} + + Copied: box/trunk/infrastructure/msvc/2010/libbackupclient.vcxproj (from rev 2962, box/trunk/infrastructure/msvc/2010/libbackupstore.vcxproj) =================================================================== --- box/trunk/infrastructure/msvc/2010/libbackupclient.vcxproj (rev 0) +++ box/trunk/infrastructure/msvc/2010/libbackupclient.vcxproj 2011-05-24 15:25:36 UTC (rev 2964) @@ -0,0 +1,94 @@ +? + + + + Debug + Win32 + + + Release + Win32 + + + + + + + + + + + + + + + + + + {97d89aef-2be4-4e34-8703-03ba67bf4494} + + + + {32604097-C934-4711-B1AD-206336640E70} + libbackupstore + + + + StaticLibrary + true + MultiByte + + + Application + false + true + MultiByte + + + + + + + + + + + + + $(ProjectDir)..\..\..\$(Configuration)\ + + + .lib + $(ProjectDir)..\..\..\$(Configuration)\$(ProjectName)\ + + + + Level3 + Disabled + $(SolutionDir)..\..\..\lib\backupclient;$(SolutionDir)..\..\..\lib\backupstore;$(SolutionDir)..\..\..\lib\raidfile;$(SolutionDir)..\..\..\lib\common;$(SolutionDir)..\..\..\lib\compress;$(SolutionDir)..\..\..\lib\crypto;$(SolutionDir)..\..\..\lib\server;$(SolutionDir)..\..\..\lib\win32;$(SolutionDir)..\..\..\qdbm;$(SolutionDir)..\..\..\..\openssl\include;$(SolutionDir)..\..\..\..\zlib\include;%(AdditionalIncludeDirectories) + MultiThreadedDebug + WIN32;_DEBUG;_LIB;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;QDBM_STATIC;%(PreprocessorDefinitions) + + + true + Ws2_32.lib;Advapi32.lib;User32.lib;$(ProjectDir)..\..\..\..\zlib\lib\zdll.lib;$(ProjectDir)..\..\..\..\openssl\lib\libeay32.lib;$(ProjectDir)..\..\..\..\openssl\lib\ssleay32.lib;$(ProjectDir)..\..\..\$(Configuration)\common.lib;%(AdditionalDependencies) + + + + + + Level3 + MaxSpeed + true + true + + + true + true + true + + + + + + \ No newline at end of file Modified: box/trunk/infrastructure/msvc/2010/libbackupstore.vcxproj =================================================================== --- box/trunk/infrastructure/msvc/2010/libbackupstore.vcxproj 2011-05-24 15:08:59 UTC (rev 2963) +++ box/trunk/infrastructure/msvc/2010/libbackupstore.vcxproj 2011-05-24 15:25:36 UTC (rev 2964) @@ -49,7 +49,7 @@ Disabled $(SolutionDir)..\..\..\lib\backupclient;$(SolutionDir)..\..\..\lib\backupstore;$(SolutionDir)..\..\..\lib\raidfile;$(SolutionDir)..\..\..\lib\common;$(SolutionDir)..\..\..\lib\compress;$(SolutionDir)..\..\..\lib\crypto;$(SolutionDir)..\..\..\lib\server;$(SolutionDir)..\..\..\lib\win32;$(SolutionDir)..\..\..\qdbm;$(SolutionDir)..\..\..\..\openssl\include;$(SolutionDir)..\..\..\..\zlib\include;%(AdditionalIncludeDirectories) MultiThreadedDebug - WIN32;_DEBUG;_CONSOLE;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_LIB;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;QDBM_STATIC;%(PreprocessorDefinitions) true @@ -71,12 +71,29 @@ + + + + + + + + + + + + + + + + + @@ -87,12 +104,29 @@ + + + + + + + + + + + + + + + + + @@ -101,6 +135,11 @@ + + + + + Modified: box/trunk/infrastructure/msvc/2010/qdbm.vcxproj =================================================================== --- box/trunk/infrastructure/msvc/2010/qdbm.vcxproj 2011-05-24 15:08:59 UTC (rev 2963) +++ box/trunk/infrastructure/msvc/2010/qdbm.vcxproj 2011-05-24 15:25:36 UTC (rev 2964) @@ -47,6 +47,7 @@ Disabled false MultiThreadedDebug + QDBM_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions) true Modified: box/trunk/infrastructure/msvc/2010/win32test.vcxproj =================================================================== --- box/trunk/infrastructure/msvc/2010/win32test.vcxproj 2011-05-24 15:08:59 UTC (rev 2963) +++ box/trunk/infrastructure/msvc/2010/win32test.vcxproj 2011-05-24 15:25:36 UTC (rev 2964) @@ -48,8 +48,8 @@ Disabled - $(ProjectDir)..\..\..\bin\bbackupd;$(ProjectDir)..\..\..\lib\backupclient;$(ProjectDir)..\..\..\lib\common;$(ProjectDir)..\..\..\lib\compress;$(ProjectDir)..\..\..\lib\crypto;$(ProjectDir)..\..\..\lib\server;$(ProjectDir)..\..\..\lib\win32;$(ProjectDir)..\..\..\..\openssl\include;$(ProjectDir)..\..\..\..\zlib\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;%(PreprocessorDefinitions) + $(ProjectDir)..\..\..\bin\bbackupd;$(ProjectDir)..\..\..\lib\backupstore;$(ProjectDir)..\..\..\lib\backupclient;$(ProjectDir)..\..\..\lib\common;$(ProjectDir)..\..\..\lib\compress;$(ProjectDir)..\..\..\lib\crypto;$(ProjectDir)..\..\..\lib\server;$(ProjectDir)..\..\..\lib\win32;$(ProjectDir)..\..\..\..\openssl\include;$(ProjectDir)..\..\..\..\zlib\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_LIB;PLATFORM_DISABLE_MEM_LEAK_TESTING;_CRT_SECURE_NO_DEPRECATE;PCRE_STATIC;QDBM_STATIC;%(PreprocessorDefinitions) true EnableFastChecks MultiThreadedDebug From trac at boxbackup.org Tue May 24 16:25:47 2011 From: trac at boxbackup.org (Trac) Date: Tue, 24 May 2011 15:25:47 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2963] Trunk Message-ID: <20110524152547.255F918DADB@www.boxbackup.org> Failed build of Box Backup [2963] --------------------------------------------------------------------- Changeset: 2963 - Committed by: chris Build Configuration: Trunk Build Platform: FreeBSD 8.0 amd64 Build Slave: www Build Number: 1782 - Failures: Step: tests-debug Errors: Executing perl failed (error code 1) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] Configuration.cpp: In member function 'bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [INFO ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [INFO ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [INFO ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [INFO ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 26706): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 26710): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 26717): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 26725): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [INFO ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [INFO ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreObjectDump [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] bbstored [INFO ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8014030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 26941): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 27001): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] Win32BackupService [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 27141): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x7e is unattached. [INFO ] WARNING: Object 0x7e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x7e is unattached. [INFO ] WARNING: Object 0x7e is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x17 references object 0x77 which does not exist. [INFO ] WARNING: Directory ID 0x19 has bad structure [INFO ] WARNING: Directory ID 0x19 has wrong size for object 0x80 [INFO ] WARNING: Object 0x64 is unattached. [INFO ] WARNING: Missing directory 0x13 could be recreated. [INFO ] WARNING: Object 0x65 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x81: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x9 has wrong container ID. [INFO ] WARNING: Directory ID 0x17 references object 0x77 which does not exist. [INFO ] WARNING: Fixing directory ID 0x17 [INFO ] WARNING: Directory ID 0x19 has bad structure [INFO ] WARNING: Directory ID 0x19 has wrong size for object 0x80 [INFO ] WARNING: Fixing directory ID 0x19 [INFO ] WARNING: Object 0x64 is unattached. [INFO ] WARNING: Recreating missing directory 0x13 [INFO ] WARNING: Object 0x65 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x81: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found [INFO ] WARNING: Directory ID 0xd references object 0x3e which is already contained. [INFO ] WARNING: Object 0x33 is unattached. [INFO ] WARNING: Missing directory 0x9 could be recreated. [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/02/o01 found, deleting [INFO ] WARNING: Directory ID 0xd references object 0x3e which is already contained. [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x33 is unattached. [INFO ] WARNING: Recreating missing directory 0x9 [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x5 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x28 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/01/o03 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o00 found [INFO ] WARNING: Directory ID 0x8 references object 0x30 which does not exist. [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x8b is unattached. [INFO ] WARNING: Missing directory 0x1b could be recreated. [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/01/o03 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/03/o00 found, deleting [INFO ] WARNING: Directory ID 0x8 references object 0x30 which does not exist. [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0x5 has wrong container ID. [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Object 0x8b is unattached. [INFO ] WARNING: Recreating missing directory 0x1b [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x28 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 27136): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp:17:36: error: BackupClientCryptoKeys.h: No such file or directory [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:300: error: 'BackupClientCryptoKeys_Setup' was not declared in this scope [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] *** Error code 1 [INFO ] Stop in test/backupstorepatch. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:187 [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 27387): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 27396): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: make failed [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] U . [INFO ] Checked out revision 2432. Step: tests-release Errors: Executing perl failed (error code 1) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 30030): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 30033): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 30041): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 30049): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 30127): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 30188): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 30274): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x43 is unattached. [INFO ] WARNING: Object 0x43 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x43 is unattached. [INFO ] WARNING: Object 0x43 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x7 references object 0x3a which does not exist. [INFO ] WARNING: Directory ID 0x8 has bad structure [INFO ] WARNING: Directory ID 0x8 has wrong size for object 0x3d [INFO ] WARNING: Directory ID 0x10 has wrong container ID. [INFO ] WARNING: Object 0x6d is unattached. [INFO ] WARNING: Missing directory 0x16 could be recreated. [INFO ] WARNING: Object 0x6e is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3e: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x7 references object 0x3a which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x8 has bad structure [INFO ] WARNING: Directory ID 0x8 has wrong size for object 0x3d [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0x10 has wrong container ID. [INFO ] WARNING: Object 0x6d is unattached. [INFO ] WARNING: Recreating missing directory 0x16 [INFO ] WARNING: Object 0x6e is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3e: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o10 found [INFO ] WARNING: Directory ID 0x19 references object 0x6f which is already contained. [INFO ] WARNING: Object 0x53 is unattached. [INFO ] WARNING: Missing directory 0x10 could be recreated. [INFO ] WARNING: Object 0x54 is unattached. [INFO ] WARNING: Object 0x55 is unattached. [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o10 found, deleting [INFO ] WARNING: Directory ID 0x19 references object 0x6f which is already contained. [INFO ] WARNING: Fixing directory ID 0x19 [INFO ] WARNING: Object 0x53 is unattached. [INFO ] WARNING: Recreating missing directory 0x10 [INFO ] WARNING: Object 0x54 is unattached. [INFO ] WARNING: Object 0x55 is unattached. [INFO ] WARNING: Object 0x56 is unattached. [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o06 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o50 found [INFO ] WARNING: Directory ID 0xf references object 0x50 which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x6 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o06 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o50 found, deleting [INFO ] WARNING: Directory ID 0xf references object 0x50 which does not exist. [INFO ] WARNING: Fixing directory ID 0xf [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x6 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 30267): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp:17:36: error: BackupClientCryptoKeys.h: No such file or directory [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:300: error: 'BackupClientCryptoKeys_Setup' was not declared in this scope [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] *** Error code 1 [INFO ] Stop in test/backupstorepatch. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] S3Simulator [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: **** TEST FAILURE: Didn't throw exception ConnectionException(SocketWriteError) at testhttpserver.cpp:187 [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 30514): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 30537): . done. [INFO ] FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: make failed [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:187) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] (cd bin/bbackupd; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] make[2]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../release/lib/win32/win32.a [INFO ] [RANLIB] ../../release/lib/win32/win32.a [INFO ] make[2]: Leaving directory `lib/win32' [INFO ] make[2]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [ERROR ] Timer.cpp: In static member function ?static void Timers::Cleanup()?: [ERROR ] Timer.cpp:86: warning: unused variable ?result? [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../release/lib/common/common.a [INFO ] [RANLIB] ../../release/lib/common/common.a [INFO ] make[2]: Leaving directory `lib/common' [INFO ] make[2]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../release/lib/compress/compress.a [INFO ] [RANLIB] ../../release/lib/compress/compress.a [INFO ] make[2]: Leaving directory `lib/compress' [INFO ] make[2]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../release/lib/crypto/crypto.a [INFO ] [RANLIB] ../../release/lib/crypto/crypto.a [INFO ] make[2]: Leaving directory `lib/crypto' [INFO ] make[2]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../release/lib/server/server.a [INFO ] [RANLIB] ../../release/lib/server/server.a [INFO ] make[2]: Leaving directory `lib/server' [INFO ] make[2]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../release/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../release/lib/backupclient/backupclient.a [INFO ] make[2]: Leaving directory `lib/backupclient' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../release/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] (cd bin/bbackupquery; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../release/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] (cd bin/bbackupctl; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../release/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] make -C docs htmlguide/man-html/bbackupd.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupd.html docbook/bb-nochunk-book.xsl docbook/bbackupd.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.html parcels/boxbackup-trunk_2522-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupquery.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupquery.html docbook/bb-nochunk-book.xsl docbook/bbackupquery.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupquery [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupquery [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupquery.html parcels/boxbackup-trunk_2522-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupctl.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupctl.html docbook/bb-nochunk-book.xsl docbook/bbackupctl.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupctl [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupctl [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupctl.html parcels/boxbackup-trunk_2522-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupd-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupd-config.html docbook/bb-nochunk-book.xsl docbook/bbackupd-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd-config [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd-config.html parcels/boxbackup-trunk_2522-backup-client-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbackupd.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbackupd.conf.html docbook/bb-nochunk-book.xsl docbook/bbackupd.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd.conf [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-client-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbackupd.conf.html parcels/boxbackup-trunk_2522-backup-client-linux-gnu/docs [INFO ] make -C docs man/bbackupd.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupd.8 docbook/bb-man.xsl docbook/bbackupd.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd [ERROR ] Note: meta date : no date; using generated date bbackupd [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd [ERROR ] Note: Writing bbackupd.8 [INFO ] gzip man/bbackupd.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.8.gz parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] make -C docs man/bbackupquery.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupquery.8 docbook/bb-man.xsl docbook/bbackupquery.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupquery [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupquery [ERROR ] Note: meta date : no date; using generated date bbackupquery [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupquery [ERROR ] Note: Writing bbackupquery.8 [INFO ] gzip man/bbackupquery.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupquery.8.gz parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] make -C docs man/bbackupctl.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupctl.8 docbook/bb-man.xsl docbook/bbackupctl.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupctl [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupctl [ERROR ] Note: meta date : no date; using generated date bbackupctl [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupctl [ERROR ] Note: Writing bbackupctl.8 [INFO ] gzip man/bbackupctl.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupctl.8.gz parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupd-config.8 docbook/bb-man.xsl docbook/bbackupd-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd-config [ERROR ] Note: meta date : no date; using generated date bbackupd-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd-config [ERROR ] Note: Writing bbackupd-config.8 [INFO ] gzip man/bbackupd-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd-config.8.gz parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbackupd.conf.5 docbook/bb-man.xsl docbook/bbackupd.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd.conf [ERROR ] Note: meta date : no date; using generated date bbackupd.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd.conf [ERROR ] Note: Writing bbackupd.conf.5 [INFO ] gzip man/bbackupd.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.conf.5.gz parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2522-backup-client-linux-gnu || mkdir parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] cp parcels/scripts/install-backup-client parcels/boxbackup-trunk_2522-backup-client-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2522-backup-client-linux-gnu | gzip -9 - > boxbackup-trunk_2522-backup-client-linux-gnu.tgz ) [INFO ] (cd bin/bbstored; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] make[2]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../release/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../release/lib/raidfile/raidfile.a [INFO ] make[2]: Leaving directory `lib/raidfile' [INFO ] make[2]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../release/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../release/lib/backupstore/backupstore.a [INFO ] make[2]: Leaving directory `lib/backupstore' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../release/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] (cd bin/bbstoreaccounts; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../release/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] make -C docs htmlguide/man-html/bbstored.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbstored.html docbook/bb-nochunk-book.xsl docbook/bbstored.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.html parcels/boxbackup-trunk_2522-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstoreaccounts.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbstoreaccounts.html docbook/bb-nochunk-book.xsl docbook/bbstoreaccounts.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstoreaccounts.html parcels/boxbackup-trunk_2522-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored-certs.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbstored-certs.html docbook/bb-nochunk-book.xsl docbook/bbstored-certs.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-certs.html parcels/boxbackup-trunk_2522-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbstored-config.html docbook/bb-nochunk-book.xsl docbook/bbstored-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored-config.html parcels/boxbackup-trunk_2522-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/raidfile-config.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/raidfile-config.html docbook/bb-nochunk-book.xsl docbook/raidfile-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile-config.html parcels/boxbackup-trunk_2522-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/bbstored.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/bbstored.conf.html docbook/bb-nochunk-book.xsl docbook/bbstored.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/bbstored.conf.html parcels/boxbackup-trunk_2522-backup-server-linux-gnu/docs [INFO ] make -C docs htmlguide/man-html/raidfile.conf.html [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o htmlguide/man-html/raidfile.conf.html docbook/bb-nochunk-book.xsl docbook/raidfile.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu/docs [INFO ] cp -p docs/htmlguide/man-html/raidfile.conf.html parcels/boxbackup-trunk_2522-backup-server-linux-gnu/docs [INFO ] make -C docs man/bbstored.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbstored.8 docbook/bb-man.xsl docbook/bbstored.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [ERROR ] Note: meta date : no date; using generated date bbstored [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored [ERROR ] Note: Writing bbstored.8 [INFO ] gzip man/bbstored.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] make -C docs man/bbstoreaccounts.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbstoreaccounts.8 docbook/bb-man.xsl docbook/bbstoreaccounts.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [ERROR ] Note: meta date : no date; using generated date bbstoreaccounts [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstoreaccounts [ERROR ] Note: Writing bbstoreaccounts.8 [INFO ] gzip man/bbstoreaccounts.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-certs.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbstored-certs.8 docbook/bb-man.xsl docbook/bbstored-certs.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [ERROR ] Note: meta date : no date; using generated date bbstored-certs [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored-certs [ERROR ] Note: Writing bbstored-certs.8 [INFO ] gzip man/bbstored-certs.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbstored-config.8 docbook/bb-man.xsl docbook/bbstored-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [ERROR ] Note: meta date : no date; using generated date bbstored-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored-config [ERROR ] Note: Writing bbstored-config.8 [INFO ] gzip man/bbstored-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] make -C docs man/raidfile-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/raidfile-config.8 docbook/bb-man.xsl docbook/raidfile-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [ERROR ] Note: meta date : no date; using generated date raidfile-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date raidfile-config [ERROR ] Note: Writing raidfile-config.8 [INFO ] gzip man/raidfile-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] make -C docs man/bbstored.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/bbstored.conf.5 docbook/bb-man.xsl docbook/bbstored.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [ERROR ] Note: meta date : no date; using generated date bbstored.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored.conf [ERROR ] Note: Writing bbstored.conf.5 [INFO ] gzip man/bbstored.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] make -C docs man/raidfile.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] xsltproc -o man/raidfile.conf.5 docbook/bb-man.xsl docbook/raidfile.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [ERROR ] Note: meta date : no date; using generated date raidfile.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date raidfile.conf [ERROR ] Note: Writing raidfile.conf.5 [INFO ] gzip man/raidfile.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2522-backup-server-linux-gnu || mkdir parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2522-backup-server-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2522-backup-server-linux-gnu | gzip -9 - > boxbackup-trunk_2522-backup-server-linux-gnu.tgz ) -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Tue May 24 16:28:23 2011 From: trac at boxbackup.org (Trac) Date: Tue, 24 May 2011 15:28:23 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2963] Trunk Message-ID: <20110524152823.D2096E717B@www.boxbackup.org> Failed build of Box Backup [2963] --------------------------------------------------------------------- Changeset: 2963 - Committed by: chris Build Configuration: Trunk Build Platform: Mac OS X 10.6 Build Slave: jmac Build Number: 1784 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] [RANLIB] win32 [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/win32/win32.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [INFO ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [INFO ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [INFO ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [INFO ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 5.248e-06 secs late [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] /usr/bin/ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [RANLIB] server [INFO ] ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 87354): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 87357): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 87363): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 87371): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [INFO ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreObjectDump [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 87686): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 87730): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] BackupQueries.cpp: In member function ?void BackupQueries::List(int64_t, const std::string&, const bool*, bool)?: [INFO ] BackupQueries.cpp:437: warning: format not a string literal and no format arguments [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 87928): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x5: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x5 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x6: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x6 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 87923): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp:17:36: error: BackupClientCryptoKeys.h: No such file or directory [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:300: error: ?BackupClientCryptoKeys_Setup? was not declared in this scope [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] *** Error code 1 [INFO ] Stop in test/backupstorepatch. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 4 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 88251): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 88258): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: make failed [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking if non-aligned 16 bit word accesses fail... no [INFO ] checking if non-aligned 32 bit word accesses fail... no [INFO ] checking if non-aligned 64 bit word accesses fail... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating HTTP exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../release/test/common/test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(99) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../release/test/crypto/test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../release/test/compress/test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../release/lib/intercept/intercept.a [INFO ] [RANLIB] ../../release/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../release/test/raidfile/test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../release/test/basicserver/test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23708): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 23711): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 23718): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 23724): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:436: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)?: [ERROR ] testbackupstore.cpp:488: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstore/test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 23794): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 23806): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../release/test/backupstorefix/test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:411: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../release/test/backupstorepatch/test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 23951): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../release/test/backupdiff/test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../release/test/bbackupd/test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../release/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../release/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../release/test/httpserver/test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] WARNING: Exception thrown: ConnectionException(Conn_SocketWriteError) at SocketStream.cpp(312) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 24206): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 24213): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 3.2651e-05 secs late [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../release/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 90966): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 90969): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 90975): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 90983): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 91055): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 91100): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 91191): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x5: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x5 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x6: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x6 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o17 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o17 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 91186): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp:17:36: error: BackupClientCryptoKeys.h: No such file or directory [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:300: error: ?BackupClientCryptoKeys_Setup? was not declared in this scope [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] *** Error code 1 [INFO ] Stop in test/backupstorepatch. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 4 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 91518): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 91525): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: make failed [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] checking build system type... x86_64-unknown-linux-gnu [INFO ] checking host system type... x86_64-unknown-linux-gnu [INFO ] checking target system type... x86_64-unknown-linux-gnu [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /bin/grep [INFO ] checking for egrep... /bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... -ledit [INFO ] checking editline/readline.h usability... yes [INFO ] checking editline/readline.h presence... yes [INFO ] checking for editline/readline.h... yes [INFO ] checking whether editline supports history... yes [INFO ] checking for editline/readline.h... (cached) yes [INFO ] checking for db.h... 4.4.20 [INFO ] checking for library containing Berkeley DB 4.4.20... -ldb [INFO ] configure: using Berkeley DB version 4.4.20 [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... yes [INFO ] checking execinfo.h presence... yes [INFO ] checking for execinfo.h... yes [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... yes [INFO ] checking sys/xattr.h presence... yes [INFO ] checking for sys/xattr.h... yes [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... yes [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... no [INFO ] checking for struct stat.st_mtimespec... no [INFO ] checking for struct stat.st_atim.tv_nsec... yes [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... no [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... no [INFO ] checking whether INFTIM is declared... no [INFO ] checking whether SO_PEERCRED is declared... yes [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... no [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... no [INFO ] checking sys/endian.h presence... no [INFO ] checking for sys/endian.h... no [INFO ] checking asm/byteorder.h usability... yes [INFO ] checking asm/byteorder.h presence... yes [INFO ] checking for asm/byteorder.h... yes [INFO ] checking for __cpu_to_be64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... yes [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... yes [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... no [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... yes [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... yes [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... yes [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... no [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... no [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... no [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... yes [INFO ] checking for llistxattr... yes [INFO ] checking for getxattr... yes [INFO ] checking for lgetxattr... yes [INFO ] checking for setxattr... yes [INFO ] checking for lsetxattr... yes [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... no [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'Linux'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Generating Compress exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating HTTP exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: yes [INFO ] Readline: yes [INFO ] Extended attributes: yes [INFO ] (cd bin/bbstored; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] mkdir -p parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] (cd bin/bbstoreaccounts; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] mkdir -p parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] (cd docs; make bb-man.xsl; if [ ! -d man ]; then mkdir man; fi) [INFO ] `bb-man.xsl' is up to date. [INFO ] (cd docs; make bbstored.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [ERROR ] Note: Writing bbstored.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstoreaccounts.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [ERROR ] Note: Writing bbstoreaccounts.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored-certs.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [ERROR ] Note: Writing bbstored-certs.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored-config.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [ERROR ] Note: Writing bbstored-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] (cd docs; make raidfile-config.8) [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [ERROR ] Note: Writing raidfile-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored.conf.5) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [ERROR ] Note: Writing bbstored.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] (cd docs; make raidfile.conf.5) [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [ERROR ] Note: Writing raidfile.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 || mkdir parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2429-backup-server-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2429-backup-server-freebsd7.2 | gzip -9 - > boxbackup-trunk_2429-backup-server-freebsd7.2.tgz ) -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From subversion at boxbackup.org Tue May 24 16:32:41 2011 From: subversion at boxbackup.org (subversion at boxbackup.org) Date: Tue, 24 May 2011 16:32:41 +0100 (BST) Subject: [Box Backup-commit] COMMIT r2965 - box/trunk/lib/common Message-ID: <20110524153241.97DB018BCF0@www.boxbackup.org> Author: chris Date: 2011-05-24 16:32:41 +0100 (Tue, 24 May 2011) New Revision: 2965 Modified: box/trunk/lib/common/Logging.cpp Log: Fix line endings. Modified: box/trunk/lib/common/Logging.cpp =================================================================== --- box/trunk/lib/common/Logging.cpp 2011-05-24 15:25:36 UTC (rev 2964) +++ box/trunk/lib/common/Logging.cpp 2011-05-24 15:32:41 UTC (rev 2965) @@ -22,9 +22,9 @@ #ifdef HAVE_UNISTD_H #include #endif -#ifdef WIN32 - #include -#endif +#ifdef WIN32 + #include +#endif #include #include Property changes on: box/trunk/lib/common/Logging.cpp ___________________________________________________________________ Added: svn:eol-style + native From trac at boxbackup.org Tue May 24 16:39:03 2011 From: trac at boxbackup.org (Trac) Date: Tue, 24 May 2011 15:39:03 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2964] Trunk Message-ID: <20110524153904.1C9F418EA7B@www.boxbackup.org> Failed build of Box Backup [2964] --------------------------------------------------------------------- Changeset: 2964 - Committed by: chris Build Configuration: Trunk Build Platform: FreeBSD 8.0 amd64 Build Slave: www Build Number: 1789 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] Configuration.cpp: In member function 'bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [INFO ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [INFO ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [INFO ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [INFO ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 41003): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 41006): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 41014): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 41021): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [INFO ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [INFO ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] BackupCommands [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreObjectDump [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] bbstored [INFO ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8014030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 41241): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 41302): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 41442): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x43 is unattached. [INFO ] WARNING: Object 0x43 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x43 is unattached. [INFO ] WARNING: Object 0x43 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x7 references object 0x3a which does not exist. [INFO ] WARNING: Directory ID 0x8 has bad structure [INFO ] WARNING: Directory ID 0x8 has wrong size for object 0x3d [INFO ] WARNING: Directory ID 0x11 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3e: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x7 references object 0x3a which does not exist. [INFO ] WARNING: Fixing directory ID 0x7 [INFO ] WARNING: Directory ID 0x8 has bad structure [INFO ] WARNING: Directory ID 0x8 has wrong size for object 0x3d [INFO ] WARNING: Fixing directory ID 0x8 [INFO ] WARNING: Directory ID 0x11 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3e: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found [INFO ] WARNING: Directory ID 0x17 references object 0x5e which is already contained. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: Missing directory 0x11 could be recreated. [INFO ] WARNING: Object 0x59 is unattached. [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: Object 0x5d is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/00/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x17 references object 0x5e which is already contained. [INFO ] WARNING: Fixing directory ID 0x17 [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: Recreating missing directory 0x11 [INFO ] WARNING: Object 0x59 is unattached. [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Object 0x5b is unattached. [INFO ] WARNING: Object 0x5c is unattached. [INFO ] WARNING: Object 0x5d is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/01/o02 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/01/01/o02 found [INFO ] WARNING: Directory ID 0xf references object 0x52 which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Missing directory 0x6 could be recreated. [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/01/o02 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/00/01/01/o02 found, deleting [INFO ] WARNING: Directory ID 0xf references object 0x52 which does not exist. [INFO ] WARNING: Fixing directory ID 0xf [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x34 is unattached. [INFO ] WARNING: Recreating missing directory 0x6 [INFO ] WARNING: Object 0x35 is unattached. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 41437): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp:17:36: error: BackupClientCryptoKeys.h: No such file or directory [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:300: error: 'BackupClientCryptoKeys_Setup' was not declared in this scope [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] *** Error code 1 [INFO ] Stop in test/backupstorepatch. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] S3Client [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPRequest [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Connection reset by peer (54) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 41731): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 41739): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: make failed [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] U . [INFO ] Checked out revision 2423. Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 44373): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 44377): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 44385): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 44397): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 44450): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 44511): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 44592): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Object 0x38 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Object 0x38 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x30 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x1c has wrong container ID. [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Missing directory 0xe could be recreated. [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x30 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x1c has wrong container ID. [INFO ] WARNING: Object 0x57 is unattached. [INFO ] WARNING: Recreating missing directory 0xe [INFO ] WARNING: Object 0x58 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o1c found [INFO ] WARNING: Directory ID 0x14 references object 0x59 which is already contained. [INFO ] WARNING: Object 0x89 is unattached. [INFO ] WARNING: Missing directory 0x1c could be recreated. [INFO ] WARNING: Object 0x8a is unattached. [INFO ] WARNING: Object 0x8b is unattached. [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o1c found, deleting [INFO ] WARNING: Directory ID 0x14 references object 0x59 which is already contained. [INFO ] WARNING: Fixing directory ID 0x14 [INFO ] WARNING: Object 0x89 is unattached. [INFO ] WARNING: Recreating missing directory 0x1c [INFO ] WARNING: Object 0x8a is unattached. [INFO ] WARNING: Object 0x8b is unattached. [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: Object 0x8e is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x17 is unattached. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x17 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o83 found [INFO ] WARNING: Directory ID 0x1a references object 0x83 which does not exist. [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: File ID 0x79 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o83 found, deleting [INFO ] WARNING: Directory ID 0x1a references object 0x83 which does not exist. [INFO ] WARNING: Fixing directory ID 0x1a [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: File ID 0x79 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x79 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x79 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 44586): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp:17:36: error: BackupClientCryptoKeys.h: No such file or directory [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:300: error: 'BackupClientCryptoKeys_Setup' was not declared in this scope [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] *** Error code 1 [INFO ] Stop in test/backupstorepatch. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] S3Client [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPRequest [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Connection reset by peer (54) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 44831): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 44839): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: make failed [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] make[1]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../debug/lib/win32/win32.a [INFO ] [RANLIB] ../../debug/lib/win32/win32.a [INFO ] make[1]: Leaving directory `lib/win32' [INFO ] make[1]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [ERROR ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [ERROR ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [ERROR ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [ERROR ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [ERROR ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../debug/lib/common/common.a [INFO ] [RANLIB] ../../debug/lib/common/common.a [INFO ] make[1]: Leaving directory `lib/common' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcommon.cpp [INFO ] [LINK] ../../debug/test/common/test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(116) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(133) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (!spTimers) at Timer.cpp(43) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(429) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(584) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Failed to open lockfile: testfiles/non-exist/lock [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(99) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../debug/lib/crypto/crypto.a [INFO ] [RANLIB] ../../debug/lib/crypto/crypto.a [INFO ] make[1]: Leaving directory `lib/crypto' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcrypto.cpp [INFO ] [LINK] ../../debug/test/crypto/test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/crypto/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../debug/lib/compress/compress.a [INFO ] [RANLIB] ../../debug/lib/compress/compress.a [INFO ] make[1]: Leaving directory `lib/compress' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testcompress.cpp [INFO ] [LINK] ../../debug/test/compress/test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/compress/testfiles': No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/intercept' [INFO ] [CXX] intercept.cpp [INFO ] [AR] ../../debug/lib/intercept/intercept.a [INFO ] [RANLIB] ../../debug/lib/intercept/intercept.a [INFO ] make[1]: Leaving directory `lib/intercept' [INFO ] make[1]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../debug/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../debug/lib/raidfile/raidfile.a [INFO ] make[1]: Leaving directory `lib/raidfile' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testraidfile.cpp [INFO ] [LINK] ../../debug/test/raidfile/test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../debug/lib/server/server.a [INFO ] [RANLIB] ../../debug/lib/server/server.a [INFO ] make[1]: Leaving directory `lib/server' [INFO ] [CXX] TestCommands.cpp [INFO ] [CXX] TestContext.cpp [INFO ] [CXX] _main.cpp [INFO ] [CXX] autogen_TestProtocolClient.cpp [INFO ] [CXX] autogen_TestProtocolServer.cpp [INFO ] [CXX] testbasicserver.cpp [INFO ] [LINK] ../../debug/test/basicserver/test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19152): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19155): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(150) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 19163): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 19169): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [ERROR ] BackupStoreFileDiff.cpp: In function ?void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)?: [ERROR ] BackupStoreFileDiff.cpp:1033: warning: format ?%8lld? expects type ?long long int?, but argument 3 has type ?long int? [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../debug/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../debug/lib/backupclient/backupclient.a [INFO ] make[1]: Leaving directory `lib/backupclient' [INFO ] make[1]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../debug/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../debug/lib/backupstore/backupstore.a [INFO ] make[1]: Leaving directory `lib/backupstore' [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../debug/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../debug/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstore.cpp [ERROR ] testbackupstore.cpp: In function ?void test_everything_deleted(BackupProtocolClient&, int64_t)?: [ERROR ] testbackupstore.cpp:436: warning: format ?%llx? expects type ?long long unsigned int?, but argument 2 has type ?int64_t? [ERROR ] testbackupstore.cpp: In function ?int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)?: [ERROR ] testbackupstore.cpp:488: warning: format ?%llx? expects type ?long long unsigned int?, but argument 3 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstore/test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0xe1d6f0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 19404): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 19418): . done. [INFO ] PASSED [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../debug/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../debug/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../debug/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorefix.cpp [INFO ] [LINK] ../../debug/test/backupstorefix/test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbackupstorepatch.cpp [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:411: warning: format ?%lld? expects type ?long long int?, but argument 2 has type ?int64_t? [INFO ] [LINK] ../../debug/test/backupstorepatch/test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupstorepatch/testfiles': No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 19633): . done. [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] difftestfiles.cpp [INFO ] [CXX] testbackupdiff.cpp [INFO ] [LINK] ../../debug/test/backupdiff/test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] cp: cannot stat `../../../test/backupdiff/testfiles': No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(292) [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 11 seconds [INFO ] PASSED [INFO ] [CXX] _main.cpp [INFO ] [CXX] testbbackupd.cpp [INFO ] [LINK] ../../debug/test/bbackupd/test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:443 [INFO ] ERROR: **** TEST FAILURE: Condition [r == 0] failed at testbbackupd.cpp:4054 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] *********** [INFO ] Your platform supports xattr, but your filesystem does not. [INFO ] Skipping tests. [INFO ] *********** [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] make[1]: Entering directory `lib/httpserver' [INFO ] [CXX] HTTPQueryDecoder.cpp [INFO ] [CXX] HTTPRequest.cpp [INFO ] [CXX] HTTPResponse.cpp [INFO ] [CXX] HTTPServer.cpp [INFO ] [CXX] S3Client.cpp [INFO ] [CXX] S3Simulator.cpp [INFO ] [CXX] autogen_HTTPException.cpp [INFO ] [CXX] cdecode.cpp [INFO ] [CXX] cencode.cpp [INFO ] [AR] ../../debug/lib/httpserver/httpserver.a [INFO ] [RANLIB] ../../debug/lib/httpserver/httpserver.a [INFO ] make[1]: Leaving directory `lib/httpserver' [INFO ] [CXX] _main.cpp [INFO ] [CXX] testhttpserver.cpp [INFO ] [LINK] ../../debug/test/httpserver/test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: cannot access `testfiles': No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] WARNING: Exception thrown: ConnectionException(Conn_SocketWriteError) at SocketStream.cpp(312) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19866): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(83) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19873): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcommon [ERROR ] testcommon.cpp: In function 'int test(int, const char**)': [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(427) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(582) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(90) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in release mode... [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 43713): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(147) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 43717): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(147) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 43725): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 43748): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:435: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)': [ERROR ] testbackupstore.cpp:487: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 43812): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 43896): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:411: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorepatch/t [INFO ] chmod u+x ../../release/test/backupstorepatch/t [INFO ] cp _t-gdb ../../release/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../release/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 44070): . done. [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(290) [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 2 seconds [INFO ] PASSED [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../release/lib/intercept/intercept.a' is up to date. [INFO ] `../../release/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../release/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../release/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../release/bin/bbstored/bbstored' is up to date. [INFO ] `../../release/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../release/test/bbackupd/t [INFO ] chmod u+x ../../release/test/bbackupd/t [INFO ] cp _t-gdb ../../release/test/bbackupd/t-gdb [INFO ] chmod u+x ../../release/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test bbackupd in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: ...............ERROR: **** TEST FAILURE: Server didn't save PID file at Test.cpp:264 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:475 [INFO ] timed out! [INFO ] FAILED: 2 tests failed (first at Test.cpp:264) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPRequest [ERROR ] HTTPRequest.cpp: In member function 'bool HTTPRequest::Read(IOStreamGetLine&, int)': [ERROR ] HTTPRequest.cpp:118: warning: comparison is always false due to limited range of data type [INFO ] [CXX] HTTPResponse [INFO ] [CXX] HTTPServer [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 44328): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 2 tests failed (first at Test.cpp:264) [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Tue May 24 16:43:49 2011 From: trac at boxbackup.org (Trac) Date: Tue, 24 May 2011 15:43:49 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2964] Trunk Message-ID: <20110524154349.E11FF18A143@www.boxbackup.org> Failed build of Box Backup [2964] --------------------------------------------------------------------- Changeset: 2964 - Committed by: chris Build Configuration: Trunk Build Platform: Mac OS X 10.6 Build Slave: jmac Build Number: 1791 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] [RANLIB] win32 [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/win32/win32.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [INFO ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [INFO ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [INFO ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [INFO ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 7.513e-06 secs late [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] /usr/bin/ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [RANLIB] server [INFO ] ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 1441): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 1444): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 1450): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 1456): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [INFO ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreObjectDump [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 1775): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 1819): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] BackupQueries.cpp: In member function ?void BackupQueries::List(int64_t, const std::string&, const bool*, bool)?: [INFO ] BackupQueries.cpp:437: warning: format not a string literal and no format arguments [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 2021): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x5: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x5 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x6: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x6 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 2015): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp:17:36: error: BackupClientCryptoKeys.h: No such file or directory [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:300: error: ?BackupClientCryptoKeys_Setup? was not declared in this scope [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] *** Error code 1 [INFO ] Stop in test/backupstorepatch. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 5 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 2346): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 2353): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: make failed [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-linux-gnu [INFO ] checking host system type... x86_64-unknown-linux-gnu [INFO ] checking target system type... x86_64-unknown-linux-gnu [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /bin/grep [INFO ] checking for egrep... /bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... -ledit [INFO ] checking editline/readline.h usability... yes [INFO ] checking editline/readline.h presence... yes [INFO ] checking for editline/readline.h... yes [INFO ] checking whether editline supports history... yes [INFO ] checking for editline/readline.h... (cached) yes [INFO ] checking for db.h... 4.4.20 [INFO ] checking for library containing Berkeley DB 4.4.20... -ldb [INFO ] configure: using Berkeley DB version 4.4.20 [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... yes [INFO ] checking execinfo.h presence... yes [INFO ] checking for execinfo.h... yes [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... yes [INFO ] checking sys/xattr.h presence... yes [INFO ] checking for sys/xattr.h... yes [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... yes [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... no [INFO ] checking for struct stat.st_mtimespec... no [INFO ] checking for struct stat.st_atim.tv_nsec... yes [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... no [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... no [INFO ] checking whether INFTIM is declared... no [INFO ] checking whether SO_PEERCRED is declared... yes [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... no [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... no [INFO ] checking sys/endian.h presence... no [INFO ] checking for sys/endian.h... no [INFO ] checking asm/byteorder.h usability... yes [INFO ] checking asm/byteorder.h presence... yes [INFO ] checking for asm/byteorder.h... yes [INFO ] checking for __cpu_to_be64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... yes [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... yes [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... no [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... yes [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... yes [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... yes [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... no [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... no [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... no [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... yes [INFO ] checking for llistxattr... yes [INFO ] checking for getxattr... yes [INFO ] checking for lgetxattr... yes [INFO ] checking for setxattr... yes [INFO ] checking for lsetxattr... yes [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... no [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'Linux'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Generating Compress exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating HTTP exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: yes [INFO ] Readline: yes [INFO ] Extended attributes: yes Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 9.42e-07 secs late [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../release/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 5061): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 5064): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 5070): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 5077): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 5149): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 5193): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 5285): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x5: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x5 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x6: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x6 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o17 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o17 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 5280): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp:17:36: error: BackupClientCryptoKeys.h: No such file or directory [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:300: error: ?BackupClientCryptoKeys_Setup? was not declared in this scope [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] *** Error code 1 [INFO ] Stop in test/backupstorepatch. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 5 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 5614): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 5621): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: make failed [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] (cd bin/bbstored; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] mkdir -p parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] (cd bin/bbstoreaccounts; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] mkdir -p parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] (cd docs; make bb-man.xsl; if [ ! -d man ]; then mkdir man; fi) [INFO ] `bb-man.xsl' is up to date. [INFO ] (cd docs; make bbstored.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [ERROR ] Note: Writing bbstored.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstoreaccounts.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [ERROR ] Note: Writing bbstoreaccounts.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored-certs.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [ERROR ] Note: Writing bbstored-certs.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored-config.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [ERROR ] Note: Writing bbstored-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] (cd docs; make raidfile-config.8) [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [ERROR ] Note: Writing raidfile-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored.conf.5) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [ERROR ] Note: Writing bbstored.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] (cd docs; make raidfile.conf.5) [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [ERROR ] Note: Writing raidfile.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 || mkdir parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2421-backup-server-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2421-backup-server-freebsd7.2 | gzip -9 - > boxbackup-trunk_2421-backup-server-freebsd7.2.tgz ) [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [ERROR ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [ERROR ] DebugMemLeakFinder.cpp:341: warning: unused variable 'rInfo' [ERROR ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [ERROR ] DebugMemLeakFinder.cpp:361: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [ERROR ] DebugMemLeakFinder.cpp:373: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [ERROR ] testcommon.cpp: In function 'int test(int, const char**)': [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(115) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(132) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(72) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (!spTimers) at Timer.cpp(42) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(72) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(427) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(582) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(90) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(115) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(132) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(72) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(42) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(72) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 63001): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(147) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 63009): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(147) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 63024): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 63037): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [ERROR ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [ERROR ] BackupStoreFileDiff.cpp:1031: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:435: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)': [ERROR ] testbackupstore.cpp:487: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8013030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 63280): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 63337): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: ...............ERROR: **** TEST FAILURE: Server didn't save PID file at Test.cpp:264 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] timed out! [INFO ] FAILED: 2 tests failed (first at Test.cpp:264) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:411: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 63600): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(290) [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 4 seconds [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/lib/intercept/intercept.a' is up to date. [INFO ] `../../debug/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../debug/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] `../../debug/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: ...............ERROR: **** TEST FAILURE: Server didn't save PID file at Test.cpp:264 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:475 [INFO ] timed out! [INFO ] FAILED: 2 tests failed (first at Test.cpp:264) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:264) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 2 tests failed (first at Test.cpp:264) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Tue May 24 16:52:08 2011 From: trac at boxbackup.org (Trac) Date: Tue, 24 May 2011 15:52:08 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2965] Trunk Message-ID: <20110524155208.6E53418A809@www.boxbackup.org> Failed build of Box Backup [2965] --------------------------------------------------------------------- Changeset: 2965 - Committed by: chris Build Configuration: Trunk Build Platform: FreeBSD 8.0 amd64 Build Slave: www Build Number: 1796 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] Configuration.cpp: In member function 'bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)': [INFO ] Configuration.cpp:721: warning: unused variable 'r' [INFO ] [CXX] DebugMemLeakFinder [INFO ] [CXX] DebugPrintf [INFO ] [CXX] ExcludeList [INFO ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable 'rInfo' [INFO ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [INFO ] DebugMemLeakFinder.cpp:362: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [INFO ] DebugMemLeakFinder.cpp:374: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 55294): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 55298): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 55304): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 55312): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [INFO ] BackupStoreFile.cpp:307: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [INFO ] BackupStoreFileDiff.cpp:1033: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] bbstored [INFO ] HousekeepStoreAccount.cpp: In member function 'void HousekeepStoreAccount::DoHousekeeping(bool)': [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function 'bool HousekeepStoreAccount::ScanDirectory(int64_t)': [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8014030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CreaWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] te subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 55528): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 55626): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 55770): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Object 0x5a is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x5a is unattached. [INFO ] WARNING: Object 0x5a is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x6 has wrong container ID. [INFO ] WARNING: Directory ID 0xc references object 0x4e which does not exist. [INFO ] WARNING: Directory ID 0xd has bad structure [INFO ] WARNING: Directory ID 0xd has wrong size for object 0x51 [INFO ] WARNING: Object 0x82 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x83 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x52: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x6 has wrong container ID. [INFO ] WARNING: Directory ID 0xc references object 0x4e which does not exist. [INFO ] WARNING: Fixing directory ID 0xc [INFO ] WARNING: Directory ID 0xd has bad structure [INFO ] WARNING: Directory ID 0xd has wrong size for object 0x51 [INFO ] WARNING: Fixing directory ID 0xd [INFO ] WARNING: Object 0x82 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x83 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x52: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/o02 found [INFO ] WARNING: Directory ID 0x11 references object 0x5c which is already contained. [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: Missing directory 0x6 could be recreated. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/o02 found, deleting [INFO ] WARNING: Directory ID 0x11 references object 0x5c which is already contained. [INFO ] WARNING: Fixing directory ID 0x11 [INFO ] WARNING: Object 0x36 is unattached. [INFO ] WARNING: Recreating missing directory 0x6 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x38 is unattached. [INFO ] WARNING: Object 0x39 is unattached. [INFO ] WARNING: Object 0x3a is unattached. [INFO ] WARNING: Object 0x3b is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x1c is unattached. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x1c is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o03 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/o02 found [INFO ] WARNING: Directory ID 0x4 references object 0x2e which does not exist. [INFO ] WARNING: Directory ID 0x1c has wrong container ID. [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Missing directory 0xb could be recreated. [INFO ] WARNING: Object 0x49 is unattached. [INFO ] WARNING: Object 0x4a is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o03 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/o02 found, deleting [INFO ] WARNING: Directory ID 0x4 references object 0x2e which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x1c has wrong container ID. [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Recreating missing directory 0xb [INFO ] WARNING: Object 0x49 is unattached. [INFO ] WARNING: Object 0x4a is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x8d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 55764): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp:17:36: error: BackupClientCryptoKeys.h: No such file or directory [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:300: error: 'BackupClientCryptoKeys_Setup' was not declared in this scope [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] *** Error code 1 [INFO ] Stop in test/backupstorepatch. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 56006): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 56014): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: make failed [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-linux-gnu [INFO ] checking host system type... x86_64-unknown-linux-gnu [INFO ] checking target system type... x86_64-unknown-linux-gnu [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /bin/grep [INFO ] checking for egrep... /bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... -ledit [INFO ] checking editline/readline.h usability... yes [INFO ] checking editline/readline.h presence... yes [INFO ] checking for editline/readline.h... yes [INFO ] checking whether editline supports history... yes [INFO ] checking for editline/readline.h... (cached) yes [INFO ] checking for db.h... 4.4.20 [INFO ] checking for library containing Berkeley DB 4.4.20... -ldb [INFO ] configure: using Berkeley DB version 4.4.20 [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... yes [INFO ] checking execinfo.h presence... yes [INFO ] checking for execinfo.h... yes [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... yes [INFO ] checking sys/xattr.h presence... yes [INFO ] checking for sys/xattr.h... yes [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... yes [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... no [INFO ] checking for struct stat.st_mtimespec... no [INFO ] checking for struct stat.st_atim.tv_nsec... yes [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... no [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... no [INFO ] checking whether INFTIM is declared... no [INFO ] checking whether SO_PEERCRED is declared... yes [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... no [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... no [INFO ] checking sys/endian.h presence... no [INFO ] checking for sys/endian.h... no [INFO ] checking asm/byteorder.h usability... yes [INFO ] checking asm/byteorder.h presence... yes [INFO ] checking for asm/byteorder.h... yes [INFO ] checking for __cpu_to_be64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... yes [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... yes [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... no [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... yes [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... yes [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... yes [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... no [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... no [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... no [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... yes [INFO ] checking for llistxattr... yes [INFO ] checking for getxattr... yes [INFO ] checking for lgetxattr... yes [INFO ] checking for setxattr... yes [INFO ] checking for lsetxattr... yes [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... no [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'Linux'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Generating Compress exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating HTTP exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] lib/httpserver [INFO ] test/httpserver [INFO ] bin/s3simulator [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: yes [INFO ] Readline: yes [INFO ] Extended attributes: yes [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] [RANLIB] win32 [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] ConversionString [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [ERROR ] DebugMemLeakFinder.cpp: In function 'int memleakfinder_numleaks()': [ERROR ] DebugMemLeakFinder.cpp:341: warning: unused variable 'rInfo' [ERROR ] DebugMemLeakFinder.cpp: In function 'void memleakfinder_reportleaks_file(FILE*)': [ERROR ] DebugMemLeakFinder.cpp:361: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int' [ERROR ] DebugMemLeakFinder.cpp:373: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int' [INFO ] [CXX] DebugPrintf [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileStream [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] autogen_CommonException [INFO ] [CXX] autogen_ConversionException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [ERROR ] testcommon.cpp: In function 'int test(int, const char**)': [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [ERROR ] testcommon.cpp:394: warning: deprecated conversion from string constant to 'char*' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] ERROR: FileStream: called with invalid file handle [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(110) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(115) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(132) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(72) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (!spTimers) at Timer.cpp(42) [INFO ] WARNING: Exception thrown: CommonException(AssertFailed) (spTimers) at Timer.cpp(72) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at FdGetLine.cpp(79) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] WARNING: Exception thrown: CommonException(GetLineEOF) at IOStreamGetLine.cpp(70) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at ../../lib/common/Guards.h(42) [INFO ] ERROR: Missing configuration key: not exist [INFO ] WARNING: Exception thrown: CommonException(ConfigNoKey) at Configuration.cpp(427) [INFO ] WARNING: Exception thrown: CommonException(ConfigNoSubConfig) at Configuration.cpp(582) [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] WARNING: Exception thrown: CommonException(OSFileError) at NamedLock.cpp(90) [INFO ] WARNING: Exception thrown: CommonException(NamedLockAlreadyLockingSomething) at NamedLock.cpp(73) [INFO ] WARNING: Exception thrown: CommonException(NamedLockNotHeld) at NamedLock.cpp(155) [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exception thrown: CommonException(BadRegularExpression) at ExcludeList.cpp(206) [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exception thrown: ConversionException(IntOverflowInConvertFromString) at ConversionString.cpp(99) [INFO ] WARNING: Exception thrown: ConversionException(BadStringRepresentationOfInt) at ConversionString.cpp(55) [INFO ] WARNING: Exception thrown: ConversionException(CannotConvertEmptyStringToInt) at ConversionString.cpp(44) [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(115) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(132) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(72) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(42) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(72) [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(AlreadyInitialised) at CipherContext.cpp(78) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(205) [INFO ] WARNING: Exception thrown: CipherException(BeginNotCalled) at CipherContext.cpp(258) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(223) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(270) [INFO ] WARNING: Exception thrown: CipherException(EVPFinalFailure) at CipherContext.cpp(278) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] WARNING: Exception thrown: CipherException(OutputBufferTooSmall) at CipherContext.cpp(442) [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to overwrite raidfile 0 test1 [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsCurrentlyOpenForWriting) at RaidFileWrite.cpp(144) [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1026) [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(OSError) at RaidFileRead.cpp(703) [INFO ] WARNING: Exception thrown: RaidFileException(FileIsDamagedNotRecoverable) at RaidFileRead.cpp(1409) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at RaidFileRead.cpp(1091) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] [CXX] Daemon [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] autogen_ConnectionException [INFO ] [CXX] autogen_ServerException [INFO ] [AR] server [INFO ] [RANLIB] server [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 72996): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(147) [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 73000): . done. [INFO ] WARNING: Exception thrown: ServerException(SocketAlreadyOpen) at SocketStream.cpp(147) [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 73012): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 73030): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [ERROR ] BackupStoreFile.cpp: In static member function 'static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)': [ERROR ] BackupStoreFile.cpp:304: warning: unused variable 'drained' [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [ERROR ] BackupStoreFileDiff.cpp: In function 'void GenerateRecipe(BackupStoreFileEncodeStream::Recipe&, BackupStoreFileCreation::BlocksAvailableEntry*, int64_t, std::map, std::allocator > >&, int64_t)': [ERROR ] BackupStoreFileDiff.cpp:1031: warning: format '%8lld' expects type 'long long int', but argument 3 has type 'long int' [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreObjectDump [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:435: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int)': [ERROR ] testbackupstore.cpp:487: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Block 0x8013030a0 realloc()ated, but not in list. Error? Or allocated in startup static objects? [INFO ] ERROR: Attempted to overwrite raidfile 0 test-info/info [INFO ] WARNING: Exception thrown: RaidFileException(CannotOverwriteExistingFile) at RaidFileWrite.cpp(101) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(291) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(366) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(390) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(414) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(510) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoIsReadOnly) at BackupStoreInfo.cpp(490) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(370) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(394) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoBlockDeltaMakesValueNegative) at BackupStoreInfo.cpp(418) [INFO ] WARNING: Exception thrown: BackupStoreException(StoreInfoDirNotInList) at BackupStoreInfo.cpp(516) [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1297) [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1726) [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1437) [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 73260): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1691) [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: Exception thrown: ConnectionException(Conn_Protocol_UnexpectedReply) at autogen_BackupProtocolClient.cpp(1510) [INFO ] Waiting for server to die (pid 73328): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] BackupDaemon [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] autogen_ClientException [INFO ] [CXX] bbackupd [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] autogen_Documentation [INFO ] [CXX] bbackupquery [INFO ] [LINK] bbackupquery [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: ...............ERROR: **** TEST FAILURE: Server didn't save PID file at Test.cpp:264 [INFO ] ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed at testbackupstorefix.cpp:302 [INFO ] timed out! [INFO ] FAILED: 2 tests failed (first at Test.cpp:264) [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:411: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorepatch/t [INFO ] chmod u+x ../../debug/test/backupstorepatch/t [INFO ] cp _t-gdb ../../debug/test/backupstorepatch/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorepatch/t-gdb [INFO ] TEST: test/backupstorepatch [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupstorepatch/testfiles: No such file or directory [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorepatch in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] ID 3, completely different: no [INFO ] ID 4, completely different: no [INFO ] ID 5, completely different: no [INFO ] ID 6, completely different: no [INFO ] ID 7, completely different: no [INFO ] ID 8, completely different: yes [INFO ] ID 9, completely different: no [INFO ] ID 10, completely different: no [INFO ] ID 11, completely different: no [INFO ] r=0, f=0 [INFO ] r=0, f=1 [INFO ] r=0, f=2 [INFO ] r=0, f=3 [INFO ] r=0, f=4 [INFO ] r=0, f=5 [INFO ] r=0, f=6 [INFO ] r=0, f=7 [INFO ] r=0, f=8 [INFO ] r=0, f=9 [INFO ] .... [INFO ] r=1, f=0 [INFO ] r=1, f=1 [INFO ] r=1, f=2 [INFO ] r=1, f=3 [INFO ] r=1, f=4 [INFO ] r=1, f=5 [INFO ] r=1, f=6 [INFO ] r=1, f=7 [INFO ] r=1, f=8 [INFO ] r=1, f=9 [INFO ] .... [INFO ] r=2, f=0 [INFO ] r=2, f=1 [INFO ] r=2, f=2 [INFO ] r=2, f=3 [INFO ] r=2, f=4 [INFO ] r=2, f=5 [INFO ] r=2, f=6 [INFO ] r=2, f=7 [INFO ] r=2, f=8 [INFO ] r=2, f=9 [INFO ] .... [INFO ] r=3, f=0 [INFO ] r=3, f=1 [INFO ] r=3, f=2 [INFO ] r=3, f=3 [INFO ] r=3, f=4 [INFO ] r=3, f=5 [INFO ] r=3, f=6 [INFO ] r=3, f=7 [INFO ] r=3, f=8 [INFO ] r=3, f=9 [INFO ] .... [INFO ] r=4, f=0 [INFO ] r=4, f=1 [INFO ] r=4, f=2 [INFO ] r=4, f=3 [INFO ] r=4, f=4 [INFO ] r=4, f=5 [INFO ] r=4, f=6 [INFO ] r=4, f=7 [INFO ] r=4, f=8 [INFO ] r=4, f=9 [INFO ] .... [INFO ] r=5, f=0 [INFO ] r=5, f=1 [INFO ] r=5, f=2 [INFO ] r=5, f=3 [INFO ] r=5, f=4 [INFO ] r=5, f=5 [INFO ] r=5, f=6 [INFO ] r=5, f=7 [INFO ] r=5, f=8 [INFO ] r=5, f=9 [INFO ] .... [INFO ] r=6, f=0 [INFO ] r=6, f=1 [INFO ] r=6, f=2 [INFO ] r=6, f=3 [INFO ] r=6, f=4 [INFO ] r=6, f=5 [INFO ] r=6, f=6 [INFO ] r=6, f=7 [INFO ] r=6, f=8 [INFO ] r=6, f=9 [INFO ] .... [INFO ] r=7, f=0 [INFO ] r=7, f=1 [INFO ] r=7, f=2 [INFO ] r=7, f=3 [INFO ] r=7, f=4 [INFO ] r=7, f=5 [INFO ] r=7, f=6 [INFO ] r=7, f=7 [INFO ] r=7, f=8 [INFO ] r=7, f=9 [INFO ] Waiting for server to die (pid 73568): . done. [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] WARNING: Exception thrown: BackupStoreException(CannotDiffAnIncompleteStoreFile) at BackupStoreFileDiff.cpp(290) [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [INFO ] `../../debug/lib/win32/win32.a' is up to date. [INFO ] `../../debug/lib/common/common.a' is up to date. [INFO ] `../../debug/lib/compress/compress.a' is up to date. [INFO ] `../../debug/lib/crypto/crypto.a' is up to date. [INFO ] `../../debug/lib/server/server.a' is up to date. [INFO ] `../../debug/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../debug/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../debug/lib/backupstore/backupstore.a' is up to date. [INFO ] `../../debug/lib/intercept/intercept.a' is up to date. [INFO ] `../../debug/bin/bbackupctl/bbackupctl' is up to date. [INFO ] `../../debug/bin/bbackupquery/bbackupquery' is up to date. [INFO ] `../../debug/bin/bbstoreaccounts/bbstoreaccounts' is up to date. [INFO ] `../../debug/bin/bbstored/bbstored' is up to date. [INFO ] `../../debug/bin/bbackupd/bbackupd' is up to date. [INFO ] [CXX] _main [INFO ] [CXX] testbbackupd [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/bbackupd/t [INFO ] chmod u+x ../../debug/test/bbackupd/t [INFO ] cp _t-gdb ../../debug/test/bbackupd/t-gdb [INFO ] chmod u+x ../../debug/test/bbackupd/t-gdb [INFO ] TEST: test/bbackupd [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) [INFO ] ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file or directory (2) [INFO ] NOTICE: Account 0x01234567 created. [INFO ] ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was already running?) at Test.cpp:138 [INFO ] ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && bbstored_pid != 0] failed at testbbackupd.cpp:475 [INFO ] NOTICE: Running test bbackupd in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: FAILED: 2 tests failed (first at Test.cpp:264) [INFO ] backupstorepatch: PASSED [INFO ] backupdiff: PASSED [INFO ] bbackupd: FAILED: 2 tests failed (first at Test.cpp:138) [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 4 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] [RANLIB] intercept [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testdd.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/test2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testThree.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testX.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall3.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall4.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall5.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testSmall6.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testSmall10.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testfour.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN0.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN1.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN7.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN9.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN1027.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2039.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2040.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2041.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2042.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2043.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2044.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2045.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2046.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2047.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN2048.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2049.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2050.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN2055.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN2056.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN2057.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN3075.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4087.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4088.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4089.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4090.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4091.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4092.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4093.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4094.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4095.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN4096.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4097.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4098.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN4103.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN4104.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN4105.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN5123.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6135.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6136.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6137.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6138.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6139.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6140.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6141.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6142.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6143.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN6144.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6145.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6146.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN6151.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN6152.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN6153.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN7171.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8183.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8184.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8185.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8186.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8187.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8188.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8189.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8190.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8191.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN8192.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8193.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8194.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN8199.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN8200.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN8201.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN9219.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10231.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10232.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10233.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10234.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10235.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10236.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10237.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10238.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10239.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN10240.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10241.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10242.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN10247.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN10248.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN10249.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN11267.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12279.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12280.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12281.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12282.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12283.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_1/testN12284.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_2/testN12285.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_2/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/0_0/testN12286.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_0/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1097) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) (Failed to open RaidFile: testfiles/1_1/testN12287.rf: Input/output error (5)) at RaidFileRead.cpp(1104) [INFO ] ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 58647): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 58651): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 58659): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 58666): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function 'void test_everything_deleted(BackupProtocolClient&, int64_t)': [ERROR ] testbackupstore.cpp:440: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'int64_t' [ERROR ] testbackupstore.cpp: In function 'void set_refcount(int64_t, uint32_t)': [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [ERROR ] testbackupstore.cpp: In function 'int64_t create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int, BackupStoreRefCountDatabase&)': [ERROR ] testbackupstore.cpp:524: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'int64_t' [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] CrWARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] eate subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 58720): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 58791): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 58863): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x81 is unattached. [INFO ] WARNING: Object 0x81 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x81 is unattached. [INFO ] WARNING: Object 0x81 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0xb has wrong container ID. [INFO ] WARNING: Directory ID 0x16 references object 0x78 which does not exist. [INFO ] WARNING: Directory ID 0x17 has bad structure [INFO ] WARNING: Directory ID 0x17 has wrong size for object 0x7b [INFO ] WARNING: Object 0x2e is unattached. [INFO ] WARNING: Missing directory 0x5 could be recreated. [INFO ] WARNING: Object 0x2f is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x7c: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0xb has wrong container ID. [INFO ] WARNING: Directory ID 0x16 references object 0x78 which does not exist. [INFO ] WARNING: Fixing directory ID 0x16 [INFO ] WARNING: Directory ID 0x17 has bad structure [INFO ] WARNING: Directory ID 0x17 has wrong size for object 0x7b [INFO ] WARNING: Fixing directory ID 0x17 [INFO ] WARNING: Object 0x2e is unattached. [INFO ] WARNING: Recreating missing directory 0x5 [INFO ] WARNING: Object 0x2f is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x7c: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o0b found [INFO ] WARNING: Directory ID 0xe references object 0x4d which is already contained. [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: Missing directory 0xb could be recreated. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Object 0x49 is unattached. [INFO ] WARNING: Object 0x4a is unattached. [INFO ] WARNING: Object 0x4b is unattached. [INFO ] WARNING: Object 0x4c is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o0b found, deleting [INFO ] WARNING: Directory ID 0xe references object 0x4d which is already contained. [INFO ] WARNING: Fixing directory ID 0xe [INFO ] WARNING: Object 0x47 is unattached. [INFO ] WARNING: Recreating missing directory 0xb [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: Object 0x49 is unattached. [INFO ] WARNING: Object 0x4a is unattached. [INFO ] WARNING: Object 0x4b is unattached. [INFO ] WARNING: Object 0x4c is unattached. [INFO ] WARNING: BlocksUsed changed from 280 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 13 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x14 is unattached. [INFO ] WARNING: Object 0x6d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0x14 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x6d is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o1a found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o3e found [INFO ] WARNING: Directory ID 0x9 references object 0x3e which does not exist. [INFO ] WARNING: Directory ID 0x14 has wrong container ID. [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Object 0x8b is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o1a found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o3e found, deleting [INFO ] WARNING: Directory ID 0x9 references object 0x3e which does not exist. [INFO ] WARNING: Fixing directory ID 0x9 [INFO ] WARNING: Directory ID 0x14 has wrong container ID. [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Object 0x8b is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x8c is unattached. [INFO ] WARNING: Object 0x8d is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 8 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x6d has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 52 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 58858): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp:17:36: error: BackupClientCryptoKeys.h: No such file or directory [ERROR ] testbackupstorepatch.cpp: In function 'int test(int, const char**)': [ERROR ] testbackupstorepatch.cpp:300: error: 'BackupClientCryptoKeys_Setup' was not declared in this scope [ERROR ] testbackupstorepatch.cpp:425: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable 'startDisc' [INFO ] *** Error code 1 [INFO ] Stop in test/backupstorepatch. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] S3Simulator [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Connection reset by peer (54) [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 59112): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 59121): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: make failed [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] (cd bin/bbstored; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] make[2]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../release/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../release/lib/raidfile/raidfile.a [INFO ] make[2]: Leaving directory `lib/raidfile' [INFO ] make[2]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../release/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../release/lib/backupstore/backupstore.a [INFO ] make[2]: Leaving directory `lib/backupstore' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../release/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] mkdir -p parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] (cd bin/bbstoreaccounts; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../release/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] mkdir -p parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] make -C docs man/bbstored.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/bbstored.8 docbook/bb-man.xsl docbook/bbstored.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [ERROR ] Note: meta date : no date; using generated date bbstored [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored [ERROR ] Note: Writing bbstored.8 [INFO ] gzip man/bbstored.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] make -C docs man/bbstoreaccounts.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/bbstoreaccounts.8 docbook/bb-man.xsl docbook/bbstoreaccounts.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [ERROR ] Note: meta date : no date; using generated date bbstoreaccounts [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstoreaccounts [ERROR ] Note: Writing bbstoreaccounts.8 [INFO ] gzip man/bbstoreaccounts.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-certs.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/bbstored-certs.8 docbook/bb-man.xsl docbook/bbstored-certs.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [ERROR ] Note: meta date : no date; using generated date bbstored-certs [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored-certs [ERROR ] Note: Writing bbstored-certs.8 [INFO ] gzip man/bbstored-certs.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/bbstored-config.8 docbook/bb-man.xsl docbook/bbstored-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [ERROR ] Note: meta date : no date; using generated date bbstored-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored-config [ERROR ] Note: Writing bbstored-config.8 [INFO ] gzip man/bbstored-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] make -C docs man/raidfile-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/raidfile-config.8 docbook/bb-man.xsl docbook/raidfile-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [ERROR ] Note: meta date : no date; using generated date raidfile-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date raidfile-config [ERROR ] Note: Writing raidfile-config.8 [INFO ] gzip man/raidfile-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] make -C docs man/bbstored.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/bbstored.conf.5 docbook/bb-man.xsl docbook/bbstored.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [ERROR ] Note: meta date : no date; using generated date bbstored.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored.conf [ERROR ] Note: Writing bbstored.conf.5 [INFO ] gzip man/bbstored.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] make -C docs man/raidfile.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/raidfile.conf.5 docbook/bb-man.xsl docbook/raidfile.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [ERROR ] Note: meta date : no date; using generated date raidfile.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date raidfile.conf [ERROR ] Note: Writing raidfile.conf.5 [INFO ] gzip man/raidfile.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2513-backup-server-linux-gnu || mkdir parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2513-backup-server-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2513-backup-server-linux-gnu | gzip -9 - > boxbackup-trunk_2513-backup-server-linux-gnu.tgz ) [INFO ] (cd bin/bbstored; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] StoreStructure [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] mkdir -p parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] (cd bin/bbstoreaccounts; make -D RELEASE) [INFO ] `../../release/lib/win32/win32.a' is up to date. [INFO ] `../../release/lib/common/common.a' is up to date. [INFO ] `../../release/lib/compress/compress.a' is up to date. [INFO ] `../../release/lib/crypto/crypto.a' is up to date. [INFO ] `../../release/lib/server/server.a' is up to date. [INFO ] `../../release/lib/backupclient/backupclient.a' is up to date. [INFO ] `../../release/lib/raidfile/raidfile.a' is up to date. [INFO ] `../../release/lib/backupstore/backupstore.a' is up to date. [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] mkdir -p parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] mkdir -p parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] (cd docs; make bb-man.xsl; if [ ! -d man ]; then mkdir man; fi) [INFO ] `bb-man.xsl' is up to date. [INFO ] (cd docs; make bbstored.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [ERROR ] Note: Writing bbstored.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstoreaccounts.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [ERROR ] Note: Writing bbstoreaccounts.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored-certs.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [ERROR ] Note: Writing bbstored-certs.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored-config.8) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [ERROR ] Note: Writing bbstored-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] (cd docs; make raidfile-config.8) [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [ERROR ] Note: Writing raidfile-config.8 [INFO ] mkdir -p parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] (cd docs; make bbstored.conf.5) [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [ERROR ] Note: Writing bbstored.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] (cd docs; make raidfile.conf.5) [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [ERROR ] Note: Writing raidfile.conf.5 [INFO ] mkdir -p parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] test -d parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 || mkdir parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2419-backup-server-freebsd7.2 [INFO ] (cd parcels; tar cf - boxbackup-trunk_2419-backup-server-freebsd7.2 | gzip -9 - > boxbackup-trunk_2419-backup-server-freebsd7.2.tgz ) -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX. From trac at boxbackup.org Tue May 24 16:58:46 2011 From: trac at boxbackup.org (Trac) Date: Tue, 24 May 2011 15:58:46 -0000 Subject: [Box Backup-commit] [Failed Build] Box Backup [2965] Trunk Message-ID: <20110524155846.674E318A813@www.boxbackup.org> Failed build of Box Backup [2965] --------------------------------------------------------------------- Changeset: 2965 - Committed by: chris Build Configuration: Trunk Build Platform: Mac OS X 10.6 Build Slave: jmac Build Number: 1798 - Failures: Step: tests-debug Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Debug tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] emu [INFO ] [CXX] getopt_long [INFO ] [AR] win32 [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] /usr/bin/ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] [RANLIB] win32 [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(emu.o) has no symbols [INFO ] ranlib: file: ../../debug/lib/win32/win32.a(getopt_long.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/win32/win32.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] BoxException [INFO ] [CXX] BoxTime [INFO ] [CXX] BoxTimeToText [INFO ] [CXX] BufferedStream [INFO ] [CXX] BufferedWriteStream [INFO ] [CXX] CollectInBufferStream [INFO ] [CXX] Configuration [INFO ] [CXX] DebugAssertFailed [INFO ] [CXX] DebugMemLeakFinder [INFO ] Configuration.cpp: In member function ?bool Configuration::Verify(const ConfigurationVerify&, const std::string&, std::string&)?: [INFO ] Configuration.cpp:721: warning: unused variable ?r? [INFO ] [CXX] DebugPrintf [INFO ] DebugMemLeakFinder.cpp: In function ?int memleakfinder_numleaks()?: [INFO ] DebugMemLeakFinder.cpp:342: warning: unused variable ?rInfo? [INFO ] DebugMemLeakFinder.cpp: In function ?void memleakfinder_reportleaks_file(FILE*)?: [INFO ] DebugMemLeakFinder.cpp:362: warning: format ?%d? expects type ?int?, but argument 4 has type ?long unsigned int? [INFO ] DebugMemLeakFinder.cpp:374: warning: format ?%d? expects type ?int?, but argument 5 has type ?long unsigned int? [INFO ] [CXX] ExcludeList [INFO ] [CXX] FdGetLine [INFO ] [CXX] FileModificationTime [INFO ] [CXX] FileStream [INFO ] [CXX] GetLine [INFO ] [CXX] IOStream [INFO ] [CXX] IOStreamGetLine [INFO ] [CXX] InvisibleTempFileStream [INFO ] [CXX] Logging [INFO ] [CXX] MemBlockStream [INFO ] [CXX] NamedLock [INFO ] [CXX] PartialReadStream [INFO ] [CXX] PathUtils [INFO ] [CXX] RateLimitingStream [INFO ] [CXX] ReadGatherStream [INFO ] [CXX] ReadLoggingStream [INFO ] [CXX] StreamableMemBlock [INFO ] [CXX] Test [INFO ] [CXX] Timer [INFO ] [CXX] UnixUser [INFO ] [CXX] Utils [INFO ] [CXX] WaitForEvent [INFO ] [CXX] ZeroStream [INFO ] [CXX] ConversionString [INFO ] [CXX] autogen_ConversionException [INFO ] [CXX] EventWatchFilesystemObject [INFO ] [CXX] autogen_CommonException [INFO ] [AR] common [INFO ] [RANLIB] common [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/common/t [INFO ] chmod u+x ../../debug/test/common/t [INFO ] cp _t-gdb ../../debug/test/common/t-gdb [INFO ] chmod u+x ../../debug/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: nanosleep interrupted 3.5232e-05 secs late [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:410 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: **** TEST FAILURE: Condition [strcmp(testfilelines[l], line.c_str()) == 0] failed at testcommon.cpp:463 [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in debug mode... [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(116) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(133) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] ASSERT FAILED: [!spTimers] at Timer.cpp(43) [INFO ] ASSERT FAILED: [spTimers] at Timer.cpp(73) [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got |# comment| [INFO ] Test failed on <# comment> [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test #coment| [INFO ] Test failed on [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment #comment| [INFO ] Test failed on [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] [CXX] CipherAES [INFO ] [CXX] CipherBlowfish [INFO ] [CXX] CipherContext [INFO ] [CXX] CipherDescription [INFO ] [CXX] MD5Digest [INFO ] [CXX] Random [INFO ] [CXX] RollingChecksum [INFO ] [CXX] autogen_CipherException [INFO ] [AR] crypto [INFO ] [RANLIB] crypto [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/crypto/t [INFO ] chmod u+x ../../debug/test/crypto/t [INFO ] cp _t-gdb ../../debug/test/crypto/t-gdb [INFO ] chmod u+x ../../debug/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in debug mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] CompressStream [INFO ] [CXX] autogen_CompressException [INFO ] [AR] compress [INFO ] [RANLIB] compress [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/compress/t [INFO ] chmod u+x ../../debug/test/compress/t [INFO ] cp _t-gdb ../../debug/test/compress/t-gdb [INFO ] chmod u+x ../../debug/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in debug mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../debug/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../debug/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] RaidFileController [INFO ] [CXX] RaidFileRead [INFO ] [CXX] RaidFileUtil [INFO ] [CXX] RaidFileWrite [INFO ] [CXX] autogen_RaidFileException [INFO ] [AR] raidfile [INFO ] [RANLIB] raidfile [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/raidfile/t [INFO ] chmod u+x ../../debug/test/raidfile/t [INFO ] cp _t-gdb ../../debug/test/raidfile/t-gdb [INFO ] chmod u+x ../../debug/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in debug mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] Daemon [INFO ] [CXX] Protocol [INFO ] [CXX] ProtocolObject [INFO ] [CXX] ProtocolUncertainStream [INFO ] [CXX] SSLLib [INFO ] [CXX] ServerControl [INFO ] [CXX] Socket [INFO ] [CXX] SocketStream [INFO ] [CXX] SocketStreamTLS [INFO ] [CXX] TLSContext [INFO ] [CXX] WinNamedPipeStream [INFO ] [CXX] LocalProcessStream [INFO ] [CXX] autogen_ServerException [INFO ] [CXX] autogen_ConnectionException [INFO ] [AR] server [INFO ] /usr/bin/ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [RANLIB] server [INFO ] ranlib: file: ../../debug/lib/server/server.a(WinNamedPipeStream.o) has no symbols [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/basicserver/t [INFO ] chmod u+x ../../debug/test/basicserver/t [INFO ] cp _t-gdb ../../debug/test/basicserver/t-gdb [INFO ] chmod u+x ../../debug/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in debug mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 15386): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 15390): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 15397): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 15403): . done. [INFO ] PASSED [INFO ] [CXX] BackupClientFileAttributes [INFO ] [CXX] BackupStoreAccountDatabase [INFO ] [CXX] BackupStoreAccounts [INFO ] [CXX] BackupStoreConfigVerify [INFO ] [CXX] BackupStoreContext [INFO ] [CXX] BackupStoreDirectory [INFO ] [CXX] BackupStoreFile [INFO ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [INFO ] BackupStoreFile.cpp:307: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff [INFO ] [CXX] BackupStoreFileCmbIdx [INFO ] [CXX] BackupStoreFileCombine [INFO ] [CXX] BackupStoreFileCryptVar [INFO ] [CXX] BackupStoreFileDiff [INFO ] [CXX] BackupStoreFileEncodeStream [INFO ] [CXX] BackupStoreFileRevDiff [INFO ] [CXX] BackupStoreFilename [INFO ] [CXX] BackupStoreFilenameClear [INFO ] [CXX] BackupStoreInfo [INFO ] [CXX] BackupStoreRefCountDatabase [INFO ] [CXX] StoreStructure [INFO ] [CXX] autogen_BackupProtocolClient [INFO ] [CXX] autogen_BackupProtocolServer [INFO ] [CXX] BackupCommands [INFO ] [CXX] BackupStoreCheck [INFO ] [CXX] BackupStoreCheck2 [INFO ] [CXX] BackupStoreCheckData [INFO ] [CXX] autogen_BackupStoreException [INFO ] [AR] backupstore [INFO ] [RANLIB] backupstore [INFO ] [CXX] BackupClientCryptoKeys [INFO ] [CXX] BackupClientMakeExcludeList [INFO ] [CXX] BackupClientRestore [INFO ] [CXX] BackupDaemonConfigVerify [INFO ] [CXX] BackupStoreObjectDump [INFO ] [AR] backupclient [INFO ] [RANLIB] backupclient [INFO ] [CXX] bbstoreaccounts [INFO ] [LINK] bbstoreaccounts [INFO ] [CXX] BBStoreDHousekeeping [INFO ] [CXX] BackupStoreDaemon [INFO ] [CXX] HousekeepStoreAccount [INFO ] HousekeepStoreAccount.cpp: In member function ?void HousekeepStoreAccount::DoHousekeeping(bool)?: [INFO ] HousekeepStoreAccount.cpp:269: warning: comparison between signed and unsigned integer expressions [INFO ] HousekeepStoreAccount.cpp: In member function ?bool HousekeepStoreAccount::ScanDirectory(int64_t)?: [INFO ] HousekeepStoreAccount.cpp:441: warning: comparison between signed and unsigned integer expressions [INFO ] [CXX] bbstored [INFO ] [LINK] bbstored [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstore/t [INFO ] chmod u+x ../../debug/test/backupstore/t [INFO ] cp _t-gdb ../../debug/test/backupstore/t-gdb [INFO ] chmod u+x ../../debug/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x4 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0xc [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x10 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] NOTICE: Running test backupstore in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 15718): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 15762): . done. [INFO ] PASSED [INFO ] [CXX] bbackupctl [INFO ] [LINK] bbackupctl [INFO ] [CXX] BackupClientContext [INFO ] [CXX] BackupClientDeleteList [INFO ] [CXX] BackupClientDirectoryRecord [INFO ] [CXX] BackupClientInodeToIDMap [INFO ] [CXX] Win32BackupService [INFO ] [CXX] Win32ServiceFunctions [INFO ] [CXX] bbackupd [INFO ] [CXX] BackupDaemon [INFO ] [CXX] autogen_ClientException [INFO ] [LINK] bbackupd [INFO ] [CXX] BackupQueries [INFO ] [CXX] CommandCompletion [INFO ] [CXX] bbackupquery [INFO ] BackupQueries.cpp: In member function ?void BackupQueries::List(int64_t, const std::string&, const bool*, bool)?: [INFO ] BackupQueries.cpp:437: warning: format not a string literal and no format arguments [INFO ] [CXX] autogen_Documentation [INFO ] [LINK] bbackupquery [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupstorefix/t [INFO ] chmod u+x ../../debug/test/backupstorefix/t [INFO ] cp _t-gdb ../../debug/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../debug/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in debug mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 15960): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x5: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x5 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x6: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0x383 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x58 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x48 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0xc5b [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 6: main+0xdf9 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x6 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 284 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/01/01/o03 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/02/o00 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/03/02/01/o01 found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x24b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x3ec [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x23b [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x497 [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0x252 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x112 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x21a [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x8e4 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x1d8 [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x75e [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x338 [INFO ] TRACE: Stack frame 9: main+0xdf9 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0x8c [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 15955): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp:17:36: error: BackupClientCryptoKeys.h: No such file or directory [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:300: error: ?BackupClientCryptoKeys_Setup? was not declared in this scope [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] *** Error code 1 [INFO ] Stop in test/backupstorepatch. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/backupdiff/t [INFO ] chmod u+x ../../debug/test/backupdiff/t [INFO ] cp _t-gdb ../../debug/test/backupdiff/t-gdb [INFO ] chmod u+x ../../debug/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in debug mode... [INFO ] Time taken: 5 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../debug/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../debug/test/httpserver/t [INFO ] chmod u+x ../../debug/test/httpserver/t [INFO ] cp _t-gdb ../../debug/test/httpserver/t-gdb [INFO ] chmod u+x ../../debug/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in debug mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 16284): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 16291): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: FAILED: 6 tests failed (first at testcommon.cpp:410) [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: make failed [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Debug tests complete [INFO ] ==> Debug tests permission cleanup [INFO ] checking build system type... x86_64-unknown-freebsd7.2 [INFO ] checking host system type... x86_64-unknown-freebsd7.2 [INFO ] checking target system type... x86_64-unknown-freebsd7.2 [INFO ] checking for g++... g++ [INFO ] checking for C++ compiler default output file name... a.out [INFO ] checking whether the C++ compiler works... yes [INFO ] checking whether we are cross compiling... no [INFO ] checking for suffix of executables... [INFO ] checking for suffix of object files... o [INFO ] checking whether we are using the GNU C++ compiler... yes [INFO ] checking whether g++ accepts -g... yes [INFO ] checking whether the compiler supports exceptions... yes [INFO ] checking whether the compiler implements namespaces... yes [INFO ] checking for perl... /usr/bin/perl [INFO ] checking for ar... ar [INFO ] checking for ranlib... ranlib [INFO ] checking for library containing nanosleep... none required [INFO ] checking how to run the C++ preprocessor... g++ -E [INFO ] checking for grep that handles long lines and -e... /usr/bin/grep [INFO ] checking for egrep... /usr/bin/grep -E [INFO ] checking for ANSI C header files... yes [INFO ] checking for sys/types.h... yes [INFO ] checking for sys/stat.h... yes [INFO ] checking for stdlib.h... yes [INFO ] checking for string.h... yes [INFO ] checking for memory.h... yes [INFO ] checking for strings.h... yes [INFO ] checking for inttypes.h... yes [INFO ] checking for stdint.h... yes [INFO ] checking for unistd.h... yes [INFO ] checking zlib.h usability... yes [INFO ] checking zlib.h presence... yes [INFO ] checking for zlib.h... yes [INFO ] checking for zlibVersion in -lz... yes [INFO ] checking for editline library... no [INFO ] checking for db.h... 1.0.0 [INFO ] checking for library containing Berkeley DB 1.0.0... none required [INFO ] configure: no Berkeley DB version 1.x or 4.1 or higher found [INFO ] checking for library containing gethostbyname... none required [INFO ] checking for library containing shutdown... none required [INFO ] checking openssl/ssl.h usability... yes [INFO ] checking openssl/ssl.h presence... yes [INFO ] checking for openssl/ssl.h... yes [INFO ] checking for SSL_read in -lssl... yes [INFO ] checking for EVP_CipherInit_ex in -lcrypto... yes [INFO ] checking for dirent.h that defines DIR... yes [INFO ] checking for library containing opendir... none required [INFO ] checking for ANSI C header files... (cached) yes [INFO ] checking for sys/wait.h that is POSIX.1 compatible... yes [INFO ] checking dlfcn.h usability... yes [INFO ] checking dlfcn.h presence... yes [INFO ] checking for dlfcn.h... yes [INFO ] checking execinfo.h usability... no [INFO ] checking execinfo.h presence... no [INFO ] checking for execinfo.h... no [INFO ] checking getopt.h usability... yes [INFO ] checking getopt.h presence... yes [INFO ] checking for getopt.h... yes [INFO ] checking process.h usability... no [INFO ] checking process.h presence... no [INFO ] checking for process.h... no [INFO ] checking pwd.h usability... yes [INFO ] checking pwd.h presence... yes [INFO ] checking for pwd.h... yes [INFO ] checking signal.h usability... yes [INFO ] checking signal.h presence... yes [INFO ] checking for signal.h... yes [INFO ] checking syslog.h usability... yes [INFO ] checking syslog.h presence... yes [INFO ] checking for syslog.h... yes [INFO ] checking time.h usability... yes [INFO ] checking time.h presence... yes [INFO ] checking for time.h... yes [INFO ] checking cxxabi.h usability... yes [INFO ] checking cxxabi.h presence... yes [INFO ] checking for cxxabi.h... yes [INFO ] checking netinet/in.h usability... yes [INFO ] checking netinet/in.h presence... yes [INFO ] checking for netinet/in.h... yes [INFO ] checking sys/param.h usability... yes [INFO ] checking sys/param.h presence... yes [INFO ] checking for sys/param.h... yes [INFO ] checking sys/socket.h usability... yes [INFO ] checking sys/socket.h presence... yes [INFO ] checking for sys/socket.h... yes [INFO ] checking sys/time.h usability... yes [INFO ] checking sys/time.h presence... yes [INFO ] checking for sys/time.h... yes [INFO ] checking for sys/types.h... (cached) yes [INFO ] checking for sys/wait.h... (cached) yes [INFO ] checking sys/uio.h usability... yes [INFO ] checking sys/uio.h presence... yes [INFO ] checking for sys/uio.h... yes [INFO ] checking sys/xattr.h usability... no [INFO ] checking sys/xattr.h presence... no [INFO ] checking for sys/xattr.h... no [INFO ] checking regex.h usability... yes [INFO ] checking regex.h presence... yes [INFO ] checking for regex.h... yes [INFO ] checking for library containing dlsym... none required [INFO ] checking for u_int8_t... yes [INFO ] checking for u_int16_t... yes [INFO ] checking for u_int32_t... yes [INFO ] checking for u_int64_t... yes [INFO ] checking for uint8_t... yes [INFO ] checking for uint16_t... yes [INFO ] checking for uint32_t... yes [INFO ] checking for uint64_t... yes [INFO ] checking for stdbool.h that conforms to C99... no [INFO ] checking for _Bool... no [INFO ] checking for an ANSI C-conforming const... yes [INFO ] checking whether byte ordering is bigendian... no [INFO ] checking if non-aligned 16 bit word accesses fail... no [INFO ] checking if non-aligned 32 bit word accesses fail... no [INFO ] checking if non-aligned 64 bit word accesses fail... no [INFO ] checking for uid_t in sys/types.h... yes [INFO ] checking for mode_t... yes [INFO ] checking for off_t... yes [INFO ] checking for pid_t... yes [INFO ] checking for size_t... yes [INFO ] checking for struct stat.st_flags... yes [INFO ] checking for struct stat.st_mtimespec... yes [INFO ] checking for struct stat.st_atim.tv_nsec... no [INFO ] checking for struct stat.st_atimensec... no [INFO ] checking for struct sockaddr_in.sin_len... yes [INFO ] checking for DIR.d_fd... no [INFO ] checking for DIR.dd_fd... yes [INFO ] checking whether INFTIM is declared... yes [INFO ] checking whether SO_PEERCRED is declared... no [INFO ] checking whether O_BINARY is declared... no [INFO ] checking ucred.h usability... no [INFO ] checking ucred.h presence... no [INFO ] checking for ucred.h... no [INFO ] checking for getpeerucred... no [INFO ] checking whether optreset is declared... yes [INFO ] checking whether dirfd is declared... yes [INFO ] checking whether time.h and sys/time.h may both be included... yes [INFO ] checking whether struct tm is in sys/time.h or time.h... time.h [INFO ] checking for struct dirent.d_type... yes [INFO ] checking whether struct dirent.d_type is valid... no [INFO ] checking for special C compiler options needed for large files... no [INFO ] checking for _FILE_OFFSET_BITS value needed for large files... no [INFO ] checking for pre-processor pragma defines... no [INFO ] checking sys/endian.h usability... yes [INFO ] checking sys/endian.h presence... yes [INFO ] checking for sys/endian.h... yes [INFO ] checking asm/byteorder.h usability... no [INFO ] checking asm/byteorder.h presence... no [INFO ] checking for asm/byteorder.h... no [INFO ] checking for htobe64... yes [INFO ] checking for "/dev/urandom"... yes [INFO ] checking for getmntent... no [INFO ] checking for statfs... yes [INFO ] checking for sys/param.h... (cached) yes [INFO ] checking for mntent.h... no [INFO ] checking for sys/mnttab.h... no [INFO ] checking for sys/mount.h... yes [INFO ] checking for struct statfs.f_mntonname... yes [INFO ] checking for struct statvfs.f_mntonname... no [INFO ] checking for struct mntent.mnt_dir... no [INFO ] checking for struct mnttab.mnt_mountp... no [INFO ] checking for struct dirent.d_ino... yes [INFO ] checking for gcc version 3 or later... yes [INFO ] checking whether closedir returns void... no [INFO ] checking for error_at_line... no [INFO ] checking return type of signal handlers... void [INFO ] checking whether lstat dereferences a symlink specified with a trailing slash... no [INFO ] checking whether stat accepts an empty string... no [INFO ] checking for getpeereid... yes [INFO ] checking for lchown... yes [INFO ] checking for setproctitle... yes [INFO ] checking for getpid... yes [INFO ] checking for gettimeofday... yes [INFO ] checking for waitpid... yes [INFO ] checking for kqueue... yes [INFO ] checking sys/syscall.h usability... yes [INFO ] checking sys/syscall.h presence... yes [INFO ] checking for sys/syscall.h... yes [INFO ] checking for unistd.h... (cached) yes [INFO ] checking for syscall... yes [INFO ] checking for __syscall... yes [INFO ] checking for __syscall needing definition... no [INFO ] checking whether syscall lseek requires dummy parameter... no [INFO ] checking for listxattr... no [INFO ] checking for llistxattr... no [INFO ] checking for getxattr... no [INFO ] checking for lgetxattr... no [INFO ] checking for setxattr... no [INFO ] checking for lsetxattr... no [INFO ] checking whether XATTR_NOFOLLOW is declared... no [INFO ] checking if we have large file support enabled... yes [INFO ] checking for flock... yes [INFO ] checking whether O_EXLOCK is declared... yes [INFO ] checking whether F_SETLK is declared... yes [INFO ] configure: creating ./config.status [INFO ] config.status: creating infrastructure/BoxPlatform.pm [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbackupd.plist [INFO ] config.status: creating contrib/mac_osx/org.boxbackup.bbstored.plist [INFO ] config.status: creating contrib/solaris/bbackupd-manifest.xml [INFO ] config.status: creating contrib/solaris/bbstored-manifest.xml [INFO ] config.status: creating lib/common/BoxPortsAndFiles.h [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-exclude.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-snapshot.conf [INFO ] config.status: creating test/bbackupd/testfiles/bbackupd-symlink.conf [INFO ] config.status: creating bin/bbackupd/bbackupd-config [INFO ] config.status: creating bin/bbackupquery/makedocumentation.pl [INFO ] config.status: creating bin/bbstored/bbstored-certs [INFO ] config.status: creating bin/bbstored/bbstored-config [INFO ] config.status: creating contrib/debian/bbackupd [INFO ] config.status: creating contrib/debian/bbstored [INFO ] config.status: creating contrib/redhat/bbackupd [INFO ] config.status: creating contrib/redhat/bbstored [INFO ] config.status: creating contrib/suse/bbackupd [INFO ] config.status: creating contrib/suse/bbstored [INFO ] config.status: creating contrib/solaris/bbackupd-smf-method [INFO ] config.status: creating contrib/solaris/bbstored-smf-method [INFO ] config.status: creating contrib/windows/installer/boxbackup.mpi [INFO ] config.status: creating infrastructure/makebuildenv.pl [INFO ] config.status: creating infrastructure/makeparcels.pl [INFO ] config.status: creating infrastructure/makedistribution.pl [INFO ] config.status: creating lib/common/makeexception.pl [INFO ] config.status: creating lib/raidfile/raidfile-config [INFO ] config.status: creating lib/server/makeprotocol.pl [INFO ] config.status: creating runtest.pl [INFO ] config.status: creating test/backupstorefix/testfiles/testbackupstorefix.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck1.pl [INFO ] config.status: creating test/bbackupd/testfiles/extcheck2.pl [INFO ] config.status: creating test/bbackupd/testfiles/notifyscript.pl [INFO ] config.status: creating test/bbackupd/testfiles/syncallowscript.pl [INFO ] config.status: creating lib/common/BoxConfig.h [INFO ] Box build environment setup. [INFO ] Building on 'FreeBSD'. [INFO ] Seeding autogen code... [INFO ] Making Server protocol classes from testprotocol.txt... [INFO ] Making Client protocol classes from testprotocol.txt... [INFO ] Generating RaidFile exception... [INFO ] Generating Cipher exception... [INFO ] Making Client protocol classes from ../../bin/bbstored/backupprotocol.txt... [INFO ] Generating BackupStore exception... [INFO ] Generating Server exception... [INFO ] Generating Connection exception... [INFO ] Generating Common exception... [INFO ] Generating Conversion exception... [INFO ] Generating Compress exception... [INFO ] Making Server protocol classes from backupprotocol.txt... [INFO ] Generating Client exception... [INFO ] Creating built-in documentation for bbackupquery... [INFO ] done [INFO ] Scanning code... [INFO ] done [INFO ] Generating Makefiles... [INFO ] lib/common [INFO ] lib/win32 [INFO ] lib/raidfile [INFO ] lib/crypto [INFO ] lib/server [INFO ] lib/compress [INFO ] lib/intercept [INFO ] test/common [INFO ] test/crypto [INFO ] test/compress [INFO ] test/raidfile [INFO ] test/basicserver [INFO ] lib/backupclient [INFO ] lib/backupstore [INFO ] bin/bbackupobjdump [INFO ] bin/bbstored [INFO ] bin/bbstoreaccounts [INFO ] bin/bbackupd [INFO ] bin/bbackupquery [INFO ] bin/bbackupctl [INFO ] test/backupstore [INFO ] test/backupstorefix [INFO ] test/backupstorepatch [INFO ] test/backupdiff [INFO ] test/bbackupd [INFO ] Type 'cd ; make' to build a module [INFO ] A summary of the build configuration is below. Box Backup will function [INFO ] without these features, but will work better where they are present. Refer [INFO ] to the documentation for more information on each feature. [INFO ] Regular expressions: yes [INFO ] Large files: yes [INFO ] Berkeley DB: no [INFO ] Readline: no [INFO ] Extended attributes: no Step: tests-release Errors: Executing perl failed (error code 2) Log: [INFO ] ==> Release tests start [ERROR ] 2 processors detected, will set make to perform concurrent jobs [INFO ] [CXX] _main [INFO ] [CXX] testcommon [INFO ] [LINK] test [INFO ] cp _t ../../release/test/common/t [INFO ] chmod u+x ../../release/test/common/t [INFO ] cp _t-gdb ../../release/test/common/t-gdb [INFO ] chmod u+x ../../release/test/common/t-gdb [INFO ] TEST: test/common [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) [INFO ] ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No such file or directory (2) [INFO ] ERROR: Missing configuration key: not exist [INFO ] ERROR: Error verifying configuration: .TOPlevel (key) is missing. [INFO ] ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 [INFO ] ERROR: Error in Configuration::LoadInto: Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ERROR: Error in Configuration::LoadInto: Invalid configuration key: = invalid thing here! [INFO ] ERROR: Error in Configuration::LoadInto: File ended without terminating all subblocks [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ERROR: Error verifying configuration: test1.subconfig.carrots (key) is missing. [INFO ] ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ERROR: Error verifying configuration: .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ERROR: Error verifying configuration: .BoolTrue1 (key) is not a valid boolean value. [INFO ] ERROR: Invalid regular expression: [:not_valid: brackets ([ ]) not balanced [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] WARNING: Exclude entry ends in path separator, will never match: /foo/ [INFO ] NOTICE: Running test common in release mode... [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |First line| got |First line| [INFO ] expected |Second line| got |Second line| [INFO ] expected |Third| got |Third| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |sdf hjjk| got |sdf hjjk| [INFO ] expected || got || [INFO ] expected |test| got |test| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected |test#not comment| got |test#not comment| [INFO ] expected || got || [INFO ] expected |nice line| got |nice line| [INFO ] expected |fish| got |fish| [INFO ] expected || got || [INFO ] expected |ping| got |ping| [INFO ] expected || got || [INFO ] expected || got || [INFO ] expected |Nothing| got |Nothing| [INFO ] expected |Nothing| got |Nothing| [INFO ] (testfiles/config2.txt) Error msg is: [INFO ] ------ [INFO ] .TOPlevel (key) is missing. [INFO ] ------ [INFO ] (testfiles/config3.txt) Error msg is: [INFO ] ------ [INFO ] Unexpected start block in test1 [INFO ] ------ [INFO ] (testfiles/config4.txt) Error msg is: [INFO ] ------ [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config5.txt) Error msg is: [INFO ] ------ [INFO ] Block subconfig2 wasn't started correctly (no '{' on line of it's own) [INFO ] Root level has close block -- forgot to terminate subblock? [INFO ] ------ [INFO ] (testfiles/config6.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.bing (key) multi value not allowed (duplicated key?). [INFO ] ------ [INFO ] (testfiles/config7.txt) Error msg is: [INFO ] ------ [INFO ] Invalid configuration key: = invalid thing here! [INFO ] ------ [INFO ] (testfiles/config8.txt) Error msg is: [INFO ] ------ [INFO ] File ended without terminating all subblocks [INFO ] ------ [INFO ] (testfiles/config9.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9b.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9c.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig2.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config9d.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.carrots (key) is not a valid integer. [INFO ] ------ [INFO ] (testfiles/config10.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig.carrots (key) is missing. [INFO ] ------ [INFO ] (testfiles/config11.txt) Error msg is: [INFO ] ------ [INFO ] test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and placement. [INFO ] ------ [INFO ] (testfiles/config12.txt) Error msg is: [INFO ] ------ [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config13.txt) Error msg is: [INFO ] ------ [INFO ] .test1.* (block) is missing (a block must be present). [INFO ] .test1.otherthing (block) is missing. [INFO ] ------ [INFO ] (testfiles/config16.txt) Error msg is: [INFO ] ------ [INFO ] .BoolTrue1 (key) is not a valid boolean value. [INFO ] ------ [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcrypto [INFO ] [LINK] test [INFO ] cp _t ../../release/test/crypto/t [INFO ] chmod u+x ../../release/test/crypto/t [INFO ] cp _t-gdb ../../release/test/crypto/t-gdb [INFO ] chmod u+x ../../release/test/crypto/t-gdb [INFO ] TEST: test/crypto [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/crypto/testfiles: No such file or directory [INFO ] NOTICE: Running test crypto in release mode... [INFO ] Blowfish... [INFO ] AES... [INFO ] Misc... [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testcompress [INFO ] [LINK] test [INFO ] cp _t ../../release/test/compress/t [INFO ] chmod u+x ../../release/test/compress/t [INFO ] cp _t-gdb ../../release/test/compress/t-gdb [INFO ] chmod u+x ../../release/test/compress/t-gdb [INFO ] TEST: test/compress [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/compress/testfiles: No such file or directory [INFO ] NOTICE: Running test compress in release mode... [INFO ] PASSED [INFO ] [CXX] intercept [INFO ] [AR] intercept [INFO ] /usr/bin/ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] [RANLIB] intercept [INFO ] ranlib: file: ../../release/lib/intercept/intercept.a(intercept.o) has no symbols [INFO ] ranlib: warning for library: ../../release/lib/intercept/intercept.a the table of contents is empty (no object file members in the library define global symbols) [INFO ] [CXX] _main [INFO ] [CXX] testraidfile [INFO ] [LINK] test [INFO ] cp _t ../../release/test/raidfile/t [INFO ] chmod u+x ../../release/test/raidfile/t [INFO ] cp _t-gdb ../../release/test/raidfile/t-gdb [INFO ] chmod u+x ../../release/test/raidfile/t-gdb [INFO ] TEST: test/raidfile [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] ERROR: Attempted to delete object write1 which has 1 references [INFO ] ERROR: Attempted to modify object write1, which has no references [INFO ] ERROR: Attempted to modify object write1, which has 2 references [INFO ] ERROR: Expected raidfile doesnt-exist does not exist [INFO ] ERROR: Opening 0 damage in normal mode, but parity file doesn't exist [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 1 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe 2 present) [INFO ] NOTICE: Running test raidfile in release mode... [INFO ] NOTE: Skipping intercept based tests on this platform. [INFO ] PASSED [INFO ] [CXX] TestCommands [INFO ] [CXX] TestContext [INFO ] [CXX] _main [INFO ] [CXX] autogen_TestProtocolClient [INFO ] [CXX] autogen_TestProtocolServer [INFO ] [CXX] testbasicserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/basicserver/t [INFO ] chmod u+x ../../release/test/basicserver/t [INFO ] cp _t-gdb ../../release/test/basicserver/t-gdb [INFO ] chmod u+x ../../release/test/basicserver/t-gdb [INFO ] TEST: test/basicserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test basicserver in release mode... [INFO ] Starting server: ./test --test-daemon-args= srv1 testfiles/srv1.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 19000): . done. [INFO ] Starting server: ./test --test-daemon-args= srv2 testfiles/srv2.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 19003): . done. [INFO ] Starting server: ./test --test-daemon-args= srv3 testfiles/srv3.conf [INFO ] Waiting for server to start: . done. [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Connected to 'SERVER' [INFO ] Waiting for server to die (pid 19009): . done. [INFO ] Starting server: ./test --test-daemon-args= srv4 testfiles/srv4.conf [INFO ] Waiting for server to start: . done. [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] stream is fixed size [INFO ] stream is uncertain size [INFO ] Waiting for server to die (pid 19015): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstore [ERROR ] testbackupstore.cpp: In function ?void set_refcount(int64_t, uint32_t)?: [ERROR ] testbackupstore.cpp:481: warning: comparison between signed and unsigned integer expressions [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstore/t [INFO ] chmod u+x ../../release/test/backupstore/t [INFO ] cp _t-gdb ../../release/test/backupstore/t-gdb [INFO ] chmod u+x ../../release/test/backupstore/t-gdb [INFO ] TEST: test/backupstore [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test backupstore in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: .WARNING: Login command failed: received error BadLogin = 3 [INFO ] NOTICE: Account 0x01234567 created. [INFO ] WARNING: Reference count of object 0x1 not found in database, added with 1 references [INFO ] WARNING: Login command failed: received error CannotLockStoreForWriting = 4 [INFO ] WARNING: GetFile command failed: received error DoesNotExistInDirectory = 13 [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 1 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 2 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 3 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 4 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 5 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 6 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 7 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 8 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 9 (of which old files: 0, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 10 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 11 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 12 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 13 (of which old files: 1, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 14 (of which old files: 2, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 0), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 15 (of which old files: 3, deleted files: 2), directories: 1 [INFO ] NOTICE: Finished checking store account ID 0x01234567: no errors found [INFO ] WARNING: MoveObject command failed: received error DoesNotExist = 7 [INFO ] WARNING: MoveObject command failed: received error TargetNameExists = 10 [INFO ] WARNING: Failed to open file: testfiles/0_0/backup/01234567/refcount.db.rfw: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] WARNING: Reference count database is missing or corrupted during housekeeping, creating a new one. [INFO ] done. [INFO ] testfiles/test0 [INFO ] testfiles/test1 [INFO ] testfiles/test2 [INFO ] testfiles/test3 [INFO ] testfiles/test4 [INFO ] testfiles/test5 [INFO ] testfiles/test6 [INFO ] testfiles/test7 [INFO ] testfiles/test8 [INFO ] testfiles/test9 [INFO ] testfiles/testa [INFO ] testfiles/testb [INFO ] testfiles/testc [INFO ] testfiles/testd [INFO ] 0 [INFO ] 1 [INFO ] 2 [INFO ] 3 [INFO ] 4 [INFO ] 5 [INFO ] 6 [INFO ] 7 [INFO ] 8 [INFO ] 9 [INFO ] 10 [INFO ] 11 [INFO ] 12 [INFO ] 13 [INFO ] ==== Reading directory using read-only connection [INFO ] done. [INFO ] ==== Checking upload using read-only connection [INFO ] done. [INFO ] Create subdirs, depth = 6, dirid = 16 [INFO ] Create subdirs, depth = 5, dirid = 17 [INFO ] Create subdirs, depth = 4, dirid = 18 [INFO ] Create subdirs, depth = 3, dirid = 19 [INFO ] Create subdirs, depth = 2, dirid = 1a [INFO ] Create subdirs, depth = 1, dirid = 1b [INFO ] Create subdirs, depth = 0, dirid = 1c [INFO ] Create subdirs, depth = 0, dirid = 20 [INFO ] Create subdirs, depth = 1, dirid = 27 [INFO ] Create subdirs, depth = 0, dirid = 28 [INFO ] Create subdirs, depth = 0, dirid = 2c [INFO ] Create subdirs, depth = 2, dirid = 36 [INFO ] Create subdirs, depth = 1, dirid = 37 [INFO ] Create subdirs, depth = 0, dirid = 38 [INFO ] Create subdirs, depth = 0, dirid = 3c [INFO ] Create subdirs, depth = 1, dirid = 43 [INFO ] Create subdirs, depth = 0, dirid = 44 [INFO ] Create subdirs, depth = 0, dirid = 48 [INFO ] Create subdirs, depth = 3, dirid = 55 [INFO ] Create subdirs, depth = 2, dirid = 56 [INFO ] Create subdirs, depth = 1, dirid = 57 [INFO ] Create subdirs, depth = 0, dirid = 58 [INFO ] Create subdirs, depth = 0, dirid = 5c [INFO ] Create subdirs, depth = 1, dirid = 63 [INFO ] Create subdirs, depth = 0, dirid = 64 [INFO ] Create subdirs, depth = 0, dirid = 68 [INFO ] Create subdirs, depth = 2, dirid = 72 [INFO ] Create subdirs, depth = 1, dirid = 73 [INFO ] Create subdirs, depth = 0, dirid = 74 [INFO ] Create subdirs, depth = 0, dirid = 78 [INFO ] Create subdirs, depth = 1, dirid = 7f [INFO ] Create subdirs, depth = 0, dirid = 80 [INFO ] Create subdirs, depth = 0, dirid = 84 [INFO ] Create subdirs, depth = 4, dirid = 94 [INFO ] Create subdirs, depth = 3, dirid = 95 [INFO ] Create subdirs, depth = 2, dirid = 96 [INFO ] Create subdirs, depth = 1, dirid = 97 [INFO ] Create subdirs, depth = 0, dirid = 98 [INFO ] Create subdirs, depth = 0, dirid = 9c [INFO ] Create subdirs, depth = 1, dirid = a3 [INFO ] Create subdirs, depth = 0, dirid = a4 [INFO ] Create subdirs, depth = 0, dirid = a8 [INFO ] Create subdirs, depth = 2, dirid = b2 [INFO ] Create subdirs, depth = 1, dirid = b3 [INFO ] Create subdirs, depth = 0, dirid = b4 [INFO ] Create subdirs, depth = 0, dirid = b8 [INFO ] Create subdirs, depth = 1, dirid = bf [INFO ] Create subdirs, depth = 0, dirid = c0 [INFO ] Create subdirs, depth = 0, dirid = c4 [INFO ] Create subdirs, depth = 3, dirid = d1 [INFO ] Create subdirs, depth = 2, dirid = d2 [INFO ] Create subdirs, depth = 1, dirid = d3 [INFO ] Create subdirs, depth = 0, dirid = d4 [INFO ] Create subdirs, depth = 0, dirid = d8 [INFO ] Create subdirs, depth = 1, dirid = df [INFO ] Create subdirs, depth = 0, dirid = e0 [INFO ] Create subdirs, depth = 0, dirid = e4 [INFO ] Create subdirs, depth = 2, dirid = ee [INFO ] Create subdirs, depth = 1, dirid = ef [INFO ] Create subdirs, depth = 0, dirid = f0 [INFO ] Create subdirs, depth = 0, dirid = f4 [INFO ] Create subdirs, depth = 1, dirid = fb [INFO ] Create subdirs, depth = 0, dirid = fc [INFO ] Create subdirs, depth = 0, dirid = 100 [INFO ] Create subdirs, depth = 5, dirid = 113 [INFO ] Create subdirs, depth = 4, dirid = 114 [INFO ] Create subdirs, depth = 3, dirid = 115 [INFO ] Create subdirs, depth = 2, dirid = 116 [INFO ] Create subdirs, depth = 1, dirid = 117 [INFO ] Create subdirs, depth = 0, dirid = 118 [INFO ] Create subdirs, depth = 0, dirid = 11c [INFO ] Create subdirs, depth = 1, dirid = 123 [INFO ] Create subdirs, depth = 0, dirid = 124 [INFO ] Create subdirs, depth = 0, dirid = 128 [INFO ] Create subdirs, depth = 2, dirid = 132 [INFO ] Create subdirs, depth = 1, dirid = 133 [INFO ] Create subdirs, depth = 0, dirid = 134 [INFO ] Create subdirs, depth = 0, dirid = 138 [INFO ] Create subdirs, depth = 1, dirid = 13f [INFO ] Create subdirs, depth = 0, dirid = 140 [INFO ] Create subdirs, depth = 0, dirid = 144 [INFO ] Create subdirs, depth = 3, dirid = 151 [INFO ] Create subdirs, depth = 2, dirid = 152 [INFO ] Create subdirs, depth = 1, dirid = 153 [INFO ] Create subdirs, depth = 0, dirid = 154 [INFO ] Create subdirs, depth = 0, dirid = 158 [INFO ] Create subdirs, depth = 1, dirid = 15f [INFO ] Create subdirs, depth = 0, dirid = 160 [INFO ] Create subdirs, depth = 0, dirid = 164 [INFO ] Create subdirs, depth = 2, dirid = 16e [INFO ] Create subdirs, depth = 1, dirid = 16f [INFO ] Create subdirs, depth = 0, dirid = 170 [INFO ] Create subdirs, depth = 0, dirid = 174 [INFO ] Create subdirs, depth = 1, dirid = 17b [INFO ] Create subdirs, depth = 0, dirid = 17c [INFO ] Create subdirs, depth = 0, dirid = 180 [INFO ] Create subdirs, depth = 4, dirid = 190 [INFO ] Create subdirs, depth = 3, dirid = 191 [INFO ] Create subdirs, depth = 2, dirid = 192 [INFO ] Create subdirs, depth = 1, dirid = 193 [INFO ] Create subdirs, depth = 0, dirid = 194 [INFO ] Create subdirs, depth = 0, dirid = 198 [INFO ] Create subdirs, depth = 1, dirid = 19f [INFO ] Create subdirs, depth = 0, dirid = 1a0 [INFO ] Create subdirs, depth = 0, dirid = 1a4 [INFO ] Create subdirs, depth = 2, dirid = 1ae [INFO ] Create subdirs, depth = 1, dirid = 1af [INFO ] Create subdirs, depth = 0, dirid = 1b0 [INFO ] Create subdirs, depth = 0, dirid = 1b4 [INFO ] Create subdirs, depth = 1, dirid = 1bb [INFO ] Create subdirs, depth = 0, dirid = 1bc [INFO ] Create subdirs, depth = 0, dirid = 1c0 [INFO ] Create subdirs, depth = 3, dirid = 1cd [INFO ] Create subdirs, depth = 2, dirid = 1ce [INFO ] Create subdirs, depth = 1, dirid = 1cf [INFO ] Create subdirs, depth = 0, dirid = 1d0 [INFO ] Create subdirs, depth = 0, dirid = 1d4 [INFO ] Create subdirs, depth = 1, dirid = 1db [INFO ] Create subdirs, depth = 0, dirid = 1dc [INFO ] Create subdirs, depth = 0, dirid = 1e0 [INFO ] Create subdirs, depth = 2, dirid = 1ea [INFO ] Create subdirs, depth = 1, dirid = 1eb [INFO ] Create subdirs, depth = 0, dirid = 1ec [INFO ] Create subdirs, depth = 0, dirid = 1f0 [INFO ] Create subdirs, depth = 1, dirid = 1f7 [INFO ] Create subdirs, depth = 0, dirid = 1f8 [INFO ] Create subdirs, depth = 0, dirid = 1fc [INFO ] Test for del: 16 [INFO ] Test for del: 17 [INFO ] Test for del: 18 [INFO ] Test for del: 19 [INFO ] Test for del: 1a [INFO ] Test for del: 1b [INFO ] Test for del: 1c [INFO ] Test for del: 20 [INFO ] Test for del: 27 [INFO ] Test for del: 28 [INFO ] Test for del: 2c [INFO ] Test for del: 36 [INFO ] Test for del: 37 [INFO ] Test for del: 38 [INFO ] Test for del: 3c [INFO ] Test for del: 43 [INFO ] Test for del: 44 [INFO ] Test for del: 48 [INFO ] Test for del: 55 [INFO ] Test for del: 56 [INFO ] Test for del: 57 [INFO ] Test for del: 58 [INFO ] Test for del: 5c [INFO ] Test for del: 63 [INFO ] Test for del: 64 [INFO ] Test for del: 68 [INFO ] Test for del: 72 [INFO ] Test for del: 73 [INFO ] Test for del: 74 [INFO ] Test for del: 78 [INFO ] Test for del: 7f [INFO ] Test for del: 80 [INFO ] Test for del: 84 [INFO ] Test for del: 94 [INFO ] Test for del: 95 [INFO ] Test for del: 96 [INFO ] Test for del: 97 [INFO ] Test for del: 98 [INFO ] Test for del: 9c [INFO ] Test for del: a3 [INFO ] Test for del: a4 [INFO ] Test for del: a8 [INFO ] Test for del: b2 [INFO ] Test for del: b3 [INFO ] Test for del: b4 [INFO ] Test for del: b8 [INFO ] Test for del: bf [INFO ] Test for del: c0 [INFO ] Test for del: c4 [INFO ] Test for del: d1 [INFO ] Test for del: d2 [INFO ] Test for del: d3 [INFO ] Test for del: d4 [INFO ] Test for del: d8 [INFO ] Test for del: df [INFO ] Test for del: e0 [INFO ] Test for del: e4 [INFO ] Test for del: ee [INFO ] Test for del: ef [INFO ] Test for del: f0 [INFO ] Test for del: f4 [INFO ] Test for del: fb [INFO ] Test for del: fc [INFO ] Test for del: 100 [INFO ] Test for del: 113 [INFO ] Test for del: 114 [INFO ] Test for del: 115 [INFO ] Test for del: 116 [INFO ] Test for del: 117 [INFO ] Test for del: 118 [INFO ] Test for del: 11c [INFO ] Test for del: 123 [INFO ] Test for del: 124 [INFO ] Test for del: 128 [INFO ] Test for del: 132 [INFO ] Test for del: 133 [INFO ] Test for del: 134 [INFO ] Test for del: 138 [INFO ] Test for del: 13f [INFO ] Test for del: 140 [INFO ] Test for del: 144 [INFO ] Test for del: 151 [INFO ] Test for del: 152 [INFO ] Test for del: 153 [INFO ] Test for del: 154 [INFO ] Test for del: 158 [INFO ] Test for del: 15f [INFO ] Test for del: 160 [INFO ] Test for del: 164 [INFO ] Test for del: 16e [INFO ] Test for del: 16f [INFO ] Test for del: 170 [INFO ] Test for del: 174 [INFO ] Test for del: 17b [INFO ] Test for del: 17c [INFO ] Test for del: 180 [INFO ] Test for del: 190 [INFO ] Test for del: 191 [INFO ] Test for del: 192 [INFO ] Test for del: 193 [INFO ] Test for del: 194 [INFO ] Test for del: 198 [INFO ] Test for del: 19f [INFO ] Test for del: 1a0 [INFO ] Test for del: 1a4 [INFO ] Test for del: 1ae [INFO ] Test for del: 1af [INFO ] Test for del: 1b0 [INFO ] Test for del: 1b4 [INFO ] Test for del: 1bb [INFO ] Test for del: 1bc [INFO ] Test for del: 1c0 [INFO ] Test for del: 1cd [INFO ] Test for del: 1ce [INFO ] Test for del: 1cf [INFO ] Test for del: 1d0 [INFO ] Test for del: 1d4 [INFO ] Test for del: 1db [INFO ] Test for del: 1dc [INFO ] Test for del: 1e0 [INFO ] Test for del: 1ea [INFO ] Test for del: 1eb [INFO ] Test for del: 1ec [INFO ] Test for del: 1f0 [INFO ] Test for del: 1f7 [INFO ] Test for del: 1f8 [INFO ] Test for del: 1fc [INFO ] Waiting for server to die (pid 19088): . done. [INFO ] NOTICE: Limits on account 0x01234567 changed to 10 soft, 20000 hard. [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: . done. [INFO ] waiting for housekeeping: [INFO ] ..............................NOTICE: Limits on account 0x01234567 changed to 10 soft, 20 hard. [INFO ] WARNING: StoreFile command failed: received error StorageLimitExceeded = 11 [INFO ] WARNING: CreateDirectory command failed: received error StorageLimitExceeded = 11 [INFO ] Waiting for server to die (pid 19132): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorefix [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupstorefix/t [INFO ] chmod u+x ../../release/test/backupstorefix/t [INFO ] cp _t-gdb ../../release/test/backupstorefix/t-gdb [INFO ] chmod u+x ../../release/test/backupstorefix/t-gdb [INFO ] TEST: test/backupstorefix [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Account 0x01234567 created. [INFO ] NOTICE: Running test backupstorefix in release mode... [INFO ] Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf [INFO ] Waiting for server to start: done. [INFO ] Starting server: ../../bin/bbackupd/bbackupd testfiles/bbackupd.conf [INFO ] Waiting for server to start: done. [INFO ] Waiting for server to die (pid 19224): . done. [INFO ] WARNING: Spurious file backup/01234567/randomfile found [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x5: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x5 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Spurious file backup/01234567/randomfile found, deleting [INFO ] ERROR: Expected raidfile backup/01234567/info does not exist [INFO ] WARNING: Failed to resolve backtrace address 0x6: No such file or directory (2) [INFO ] WARNING: Exception thrown: RaidFileException(RaidFileDoesntExist) at RaidFileRead.cpp(1029) [INFO ] WARNING: Load of existing store info failed, regenerating. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Finished checking store account ID 0x01234567: 2 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] TRACE: Obtained 9 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: RaidFileRead::Open(int, std::string const&, long long*, int)+0xb22 [INFO ] TRACE: Stack frame 2: BackupStoreInfo::Load(int, std::string const&, int, bool, long long*)+0x68 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::WriteNewStoreInfo()+0x3d [INFO ] TRACE: Stack frame 4: BackupStoreCheck::Check()+0x895 [INFO ] TRACE: Stack frame 5: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 6: main+0x1049 [INFO ] TRACE: Stack frame 7: start+0x34 [INFO ] TRACE: Stack frame 8: unresolved address 0x6 [INFO ] NOTICE: Total files: 114 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] WARNING: Object 0x37 is unattached. [INFO ] WARNING: Object 0x37 is unattached, and is a patch. Deleting, cannot reliably recover. [INFO ] WARNING: Soft limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: Hard limit for account changed to ensure housekeeping doesn't delete files on next run. [INFO ] WARNING: BlocksInCurrentFiles changed from 228 to 226 [INFO ] WARNING: NumFiles changed from 114 to 113 [INFO ] WARNING: Finished checking store account ID 0x01234567: 3 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 113 (of which old files: 0, deleted files: 0), directories: 28 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Missing directory 0x1a could be recreated. [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 282 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] WARNING: Directory ID 0x4 references object 0x33 which does not exist. [INFO ] WARNING: Fixing directory ID 0x4 [INFO ] WARNING: Directory ID 0x6 has bad structure [INFO ] WARNING: Directory ID 0x6 has wrong size for object 0x39 [INFO ] WARNING: Fixing directory ID 0x6 [INFO ] WARNING: Directory ID 0x17 has wrong container ID. [INFO ] WARNING: Object 0x84 is unattached. [INFO ] WARNING: Recreating missing directory 0x1a [INFO ] WARNING: Object 0x85 is unattached. [INFO ] WARNING: BlocksUsed changed from 282 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 226 to 220 [INFO ] WARNING: BlocksInDirectories changed from 56 to 54 [INFO ] WARNING: NumFiles changed from 113 to 110 [INFO ] WARNING: NumDirectories changed from 28 to 27 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] TRACE: Entry 0x3a: Remove because ID already seen [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 110 (of which old files: 0, deleted files: 0), directories: 27 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Corrupted file backup/01234567/o17 found [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Missing directory 0x17 could be recreated. [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] WARNING: Corrupted file backup/01234567/o17 found, deleting [INFO ] WARNING: Directory ID 0x10 references object 0x4a which is already contained. [INFO ] WARNING: Fixing directory ID 0x10 [INFO ] WARNING: Object 0x78 is unattached. [INFO ] WARNING: Recreating missing directory 0x17 [INFO ] WARNING: Object 0x79 is unattached. [INFO ] WARNING: Object 0x7a is unattached. [INFO ] WARNING: Object 0x7b is unattached. [INFO ] WARNING: Object 0x7c is unattached. [INFO ] WARNING: Object 0x7d is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 220 to 212 [INFO ] WARNING: NumFiles changed from 110 to 106 [INFO ] WARNING: NumDirectories changed from 27 to 26 [INFO ] WARNING: Finished checking store account ID 0x01234567: 11 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 106 (of which old files: 0, deleted files: 0), directories: 26 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 50 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] WARNING: Object 0xd is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x48 is unattached. [INFO ] WARNING: BlocksUsed changed from 278 to 276 [INFO ] WARNING: BlocksInCurrentFiles changed from 212 to 222 [INFO ] WARNING: BlocksInDirectories changed from 54 to 52 [INFO ] WARNING: NumFiles changed from 106 to 111 [INFO ] WARNING: NumDirectories changed from 26 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Missing directory 0x8 could be recreated. [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] WARNING: Exception thrown: CommonException(StreamableMemBlockIncompleteRead) at StreamableMemBlock.cpp(274) [INFO ] WARNING: Corrupted file backup/01234567/o08 found, deleting [INFO ] WARNING: Exception thrown: BackupStoreException(CouldntReadEntireStructureFromStream) at BackupStoreFilename.cpp(191) [INFO ] WARNING: Corrupted file backup/01234567/o6d found, deleting [INFO ] WARNING: Directory ID 0x15 references object 0x6d which does not exist. [INFO ] WARNING: Fixing directory ID 0x15 [INFO ] WARNING: Directory ID 0xd has wrong container ID. [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Object 0x44 is unattached. [INFO ] WARNING: Recreating missing directory 0x8 [INFO ] WARNING: Object 0x45 is unattached. [INFO ] WARNING: Object 0x46 is unattached. [INFO ] WARNING: LastObjectIDUsed changed from 142 to 143 [INFO ] WARNING: BlocksUsed changed from 276 to 274 [INFO ] WARNING: BlocksInCurrentFiles changed from 222 to 216 [INFO ] WARNING: BlocksInDirectories changed from 52 to 50 [INFO ] WARNING: NumFiles changed from 111 to 108 [INFO ] WARNING: NumDirectories changed from 24 to 25 [INFO ] WARNING: Finished checking store account ID 0x01234567: 12 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: StreamableMemBlock::ReadFromStream(IOStream&, int)+0x38b [INFO ] TRACE: Stack frame 2: BackupStoreDirectory::ReadFromStream(IOStream&, int)+0x5eb [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckDirInitial(long long, IOStream&)+0x36 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x20d [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] TRACE: Obtained 10 stack frames. [INFO ] TRACE: Stack frame 0: DumpStackBacktrace()+0x2f [INFO ] TRACE: Stack frame 1: BackupStoreFilename::ReadFromStream(IOStream&, int)+0x35a [INFO ] TRACE: Stack frame 2: BackupStoreFile::VerifyEncodedFileFormat(IOStream&, long long*, long long*)+0xd7 [INFO ] TRACE: Stack frame 3: BackupStoreCheck::CheckFile(long long, IOStream&)+0x1a6 [INFO ] TRACE: Stack frame 4: BackupStoreCheck::CheckAndAddObject(long long, std::string const&)+0x27e [INFO ] TRACE: Stack frame 5: BackupStoreCheck::CheckObjectsDir(long long)+0x699 [INFO ] TRACE: Stack frame 6: BackupStoreCheck::CheckObjects()+0x17b [INFO ] TRACE: Stack frame 7: BackupStoreCheck::Check()+0x4fb [INFO ] TRACE: Stack frame 8: CheckAccount(Configuration&, std::string const&, int, bool, bool)+0x2cc [INFO ] TRACE: Stack frame 9: main+0x1049 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 108 (of which old files: 0, deleted files: 0), directories: 25 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 7 errors found [INFO ] WARNING: No changes to the store account have been made. [INFO ] WARNING: Run again with fix option to fix these errors [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] ERROR: Have file as root directory. This is bad. [INFO ] WARNING: Corrupted file backup/01234567/o01 found, deleting [INFO ] WARNING: File ID 0x48 has different container ID, probably moved [INFO ] WARNING: Root directory doesn't exist [INFO ] WARNING: Object 0x2 is unattached. [INFO ] WARNING: Lost and found dir has name lost+found0 [INFO ] WARNING: Object 0x8f is unattached. [INFO ] WARNING: BlocksUsed changed from 274 to 278 [INFO ] WARNING: BlocksInCurrentFiles changed from 216 to 222 [INFO ] WARNING: BlocksInDirectories changed from 50 to 54 [INFO ] WARNING: NumFiles changed from 108 to 111 [INFO ] WARNING: NumDirectories changed from 25 to 24 [INFO ] WARNING: Finished checking store account ID 0x01234567: 9 errors found [INFO ] WARNING: You should now use bbackupquery on the client machine to examine the store. [INFO ] WARNING: A lost+found directory was created in the account root. [INFO ] This contains files and directories which could not be matched to existing directories. [INFO ] bbackupd will delete this directory in a few days time. [INFO ] NOTICE: Will fix errors encountered during checking. [INFO ] INFO: Checking store account ID 0x01234567... [INFO ] INFO: Phase 1, check objects... [INFO ] TRACE: Max dir starting ID is 0 [INFO ] INFO: Phase 2, check directories... [INFO ] INFO: Phase 3, check root... [INFO ] INFO: Phase 4, fix unattached objects... [INFO ] INFO: Phase 5, fix unrecovered inconsistencies... [INFO ] INFO: Phase 6, regenerate store info... [INFO ] NOTICE: Total files: 111 (of which old files: 0, deleted files: 0), directories: 24 [INFO ] NOTICE: New store info file written successfully. [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] WARNING: **** BackupStoreFilename encoded with Clear encoding **** [INFO ] === Delete store info, add random file [INFO ] === Delete an entry for an object from dir, change that object to be a patch, check it's deleted [INFO ] === Delete directory, change container ID of another, duplicate entry in dir, spurious file size, delete file [INFO ] === Modify the obj ID of dir, delete dir with no members, add extra reference to a file [INFO ] === Orphan files and dirs without being recoverable [INFO ] === Corrupt file and dir [INFO ] === Overwrite root with a file [INFO ] Waiting for server to die (pid 19219): . done. [INFO ] PASSED [INFO ] [CXX] _main [INFO ] [CXX] testbackupstorepatch [ERROR ] testbackupstorepatch.cpp:17:36: error: BackupClientCryptoKeys.h: No such file or directory [ERROR ] testbackupstorepatch.cpp: In function ?int test(int, const char**)?: [ERROR ] testbackupstorepatch.cpp:300: error: ?BackupClientCryptoKeys_Setup? was not declared in this scope [ERROR ] testbackupstorepatch.cpp:498: warning: unused variable ?startDisc? [INFO ] *** Error code 1 [INFO ] Stop in test/backupstorepatch. [INFO ] [CXX] _main [INFO ] [CXX] difftestfiles [INFO ] [CXX] testbackupdiff [INFO ] [LINK] test [INFO ] cp _t ../../release/test/backupdiff/t [INFO ] chmod u+x ../../release/test/backupdiff/t [INFO ] cp _t-gdb ../../release/test/backupdiff/t-gdb [INFO ] chmod u+x ../../release/test/backupdiff/t-gdb [INFO ] TEST: test/backupdiff [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] cp: ../../../test/backupdiff/testfiles: No such file or directory [INFO ] NOTICE: Running test backupdiff in release mode... [INFO ] Time taken: 3 seconds [INFO ] PASSED [ERROR ] make: don't know how to make ../../release/test/bbackupd/../../bin/bbstored/BackupCommands.o. Stop [INFO ] [CXX] HTTPQueryDecoder [INFO ] [CXX] HTTPServer [INFO ] [CXX] cdecode [INFO ] [CXX] cencode [INFO ] [CXX] HTTPRequest [INFO ] [CXX] HTTPResponse [INFO ] [CXX] S3Client [INFO ] [CXX] S3Simulator [INFO ] [CXX] autogen_HTTPException [INFO ] [AR] httpserver [INFO ] [RANLIB] httpserver [INFO ] [CXX] _main [INFO ] [CXX] testhttpserver [INFO ] [LINK] test [INFO ] cp _t ../../release/test/httpserver/t [INFO ] chmod u+x ../../release/test/httpserver/t [INFO ] cp _t-gdb ../../release/test/httpserver/t-gdb [INFO ] chmod u+x ../../release/test/httpserver/t-gdb [INFO ] TEST: test/httpserver [INFO ] Killing any running daemons... [INFO ] Removing old test files... [INFO ] chmod: testfiles: No such file or directory [INFO ] Copying new test files... [INFO ] NOTICE: Running test httpserver in release mode... [INFO ] Starting server: ./test server testfiles/httpserver.conf [INFO ] Waiting for server to start: .GET request... [INFO ] POST request... [INFO ] HEAD request... [INFO ] Redirected GET request... [INFO ] Cookie tests... [INFO ] ERROR: Failed to write to socket: Broken pipe (32) [INFO ] done. [INFO ] Waiting for server to die (pid 19549): . done. [INFO ] WARNING: Failed to open file: testfiles/nonexist: No such file or directory (2) [INFO ] WARNING: Exception thrown: CommonException(OSFileOpenError) at FileStream.cpp(84) [INFO ] Starting server: ./test s3server testfiles/s3simulator.conf [INFO ] Waiting for server to start: . done. [INFO ] Waiting for server to die (pid 19556): . done. [INFO ] PASSED [INFO ] -------- [INFO ] common: PASSED [INFO ] crypto: PASSED [INFO ] compress: PASSED [INFO ] raidfile: PASSED [INFO ] basicserver: PASSED [INFO ] backupstore: PASSED [INFO ] backupstorefix: PASSED [INFO ] backupstorepatch: make failed [INFO ] backupdiff: PASSED [INFO ] bbackupd: make failed [INFO ] httpserver: PASSED [INFO ] One or more tests have failed. Please check the following common causes: [INFO ] * Check that no instances of bbstored or bbackupd are already running [INFO ] on this machine. [INFO ] * Make sure there isn't a firewall blocking incoming or outgoing connections [INFO ] on port 2201. [INFO ] * Check that there is sufficient space in the filesystem that the tests [INFO ] are being run from (at least 1 GB free). [INFO ] * The backupdiff test fails if it takes too long, so it's sensitive to [INFO ] the speed of the host and your connection to it. [INFO ] After checking all the above, if you still have problems please contact [INFO ] us on the mailing list, boxbackup at boxbackup.org. Thanks! [INFO ] ==> Release tests complete [INFO ] ==> Release tests permission cleanup [INFO ] (cd bin/bbackupd; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupd' [INFO ] make[2]: Entering directory `lib/win32' [INFO ] [CXX] emu.cpp [INFO ] [CXX] getopt_long.cpp [INFO ] [AR] ../../release/lib/win32/win32.a [INFO ] [RANLIB] ../../release/lib/win32/win32.a [INFO ] make[2]: Leaving directory `lib/win32' [INFO ] make[2]: Entering directory `lib/common' [INFO ] [CXX] BoxException.cpp [INFO ] [CXX] BoxTime.cpp [INFO ] [CXX] BoxTimeToText.cpp [INFO ] [CXX] BufferedStream.cpp [INFO ] [CXX] CollectInBufferStream.cpp [INFO ] [CXX] Configuration.cpp [INFO ] [CXX] ConversionString.cpp [INFO ] [CXX] DebugAssertFailed.cpp [INFO ] [CXX] DebugMemLeakFinder.cpp [INFO ] [CXX] DebugPrintf.cpp [INFO ] [CXX] EventWatchFilesystemObject.cpp [INFO ] [CXX] ExcludeList.cpp [INFO ] [CXX] FdGetLine.cpp [INFO ] [CXX] FileStream.cpp [INFO ] [CXX] IOStream.cpp [INFO ] [CXX] IOStreamGetLine.cpp [INFO ] [CXX] InvisibleTempFileStream.cpp [INFO ] [CXX] Logging.cpp [INFO ] [CXX] MemBlockStream.cpp [INFO ] [CXX] NamedLock.cpp [INFO ] [CXX] PartialReadStream.cpp [INFO ] [CXX] PathUtils.cpp [INFO ] [CXX] ReadGatherStream.cpp [INFO ] [CXX] ReadLoggingStream.cpp [INFO ] [CXX] StreamableMemBlock.cpp [INFO ] [CXX] Test.cpp [INFO ] [CXX] Timer.cpp [ERROR ] Timer.cpp: In static member function ?static void Timers::Cleanup()?: [ERROR ] Timer.cpp:86: warning: unused variable ?result? [INFO ] [CXX] UnixUser.cpp [INFO ] [CXX] Utils.cpp [INFO ] [CXX] WaitForEvent.cpp [INFO ] [CXX] ZeroStream.cpp [INFO ] [CXX] autogen_CommonException.cpp [INFO ] [CXX] autogen_ConversionException.cpp [INFO ] [AR] ../../release/lib/common/common.a [INFO ] [RANLIB] ../../release/lib/common/common.a [INFO ] make[2]: Leaving directory `lib/common' [INFO ] make[2]: Entering directory `lib/compress' [INFO ] [CXX] CompressStream.cpp [INFO ] [CXX] autogen_CompressException.cpp [INFO ] [AR] ../../release/lib/compress/compress.a [INFO ] [RANLIB] ../../release/lib/compress/compress.a [INFO ] make[2]: Leaving directory `lib/compress' [INFO ] make[2]: Entering directory `lib/crypto' [INFO ] [CXX] CipherAES.cpp [INFO ] [CXX] CipherBlowfish.cpp [INFO ] [CXX] CipherContext.cpp [INFO ] [CXX] CipherDescription.cpp [INFO ] [CXX] MD5Digest.cpp [INFO ] [CXX] Random.cpp [INFO ] [CXX] RollingChecksum.cpp [INFO ] [CXX] autogen_CipherException.cpp [INFO ] [AR] ../../release/lib/crypto/crypto.a [INFO ] [RANLIB] ../../release/lib/crypto/crypto.a [INFO ] make[2]: Leaving directory `lib/crypto' [INFO ] make[2]: Entering directory `lib/server' [INFO ] [CXX] Daemon.cpp [INFO ] [CXX] LocalProcessStream.cpp [INFO ] [CXX] Protocol.cpp [INFO ] [CXX] ProtocolObject.cpp [INFO ] [CXX] ProtocolUncertainStream.cpp [INFO ] [CXX] SSLLib.cpp [INFO ] [CXX] ServerControl.cpp [INFO ] [CXX] Socket.cpp [INFO ] [CXX] SocketStream.cpp [INFO ] [CXX] SocketStreamTLS.cpp [INFO ] [CXX] TLSContext.cpp [INFO ] [CXX] WinNamedPipeStream.cpp [INFO ] [CXX] autogen_ConnectionException.cpp [INFO ] [CXX] autogen_ServerException.cpp [INFO ] [AR] ../../release/lib/server/server.a [INFO ] [RANLIB] ../../release/lib/server/server.a [INFO ] make[2]: Leaving directory `lib/server' [INFO ] make[2]: Entering directory `lib/backupclient' [INFO ] [CXX] BackupClientCryptoKeys.cpp [INFO ] [CXX] BackupClientFileAttributes.cpp [INFO ] [CXX] BackupClientMakeExcludeList.cpp [INFO ] [CXX] BackupClientRestore.cpp [INFO ] [CXX] BackupDaemonConfigVerify.cpp [INFO ] [CXX] BackupStoreDirectory.cpp [INFO ] [CXX] BackupStoreFile.cpp [ERROR ] BackupStoreFile.cpp: In static member function ?static void BackupStoreFile::DecodeFile(IOStream&, const char*, int, const BackupClientFileAttributes*)?: [ERROR ] BackupStoreFile.cpp:304: warning: unused variable ?drained? [INFO ] [CXX] BackupStoreFileCmbDiff.cpp [INFO ] [CXX] BackupStoreFileCmbIdx.cpp [INFO ] [CXX] BackupStoreFileCombine.cpp [INFO ] [CXX] BackupStoreFileCryptVar.cpp [INFO ] [CXX] BackupStoreFileDiff.cpp [INFO ] [CXX] BackupStoreFileEncodeStream.cpp [INFO ] [CXX] BackupStoreFileRevDiff.cpp [INFO ] [CXX] BackupStoreFilename.cpp [INFO ] [CXX] BackupStoreFilenameClear.cpp [INFO ] [CXX] BackupStoreObjectDump.cpp [INFO ] [CXX] autogen_BackupProtocolClient.cpp [INFO ] [CXX] autogen_BackupStoreException.cpp [INFO ] [AR] ../../release/lib/backupclient/backupclient.a [INFO ] [RANLIB] ../../release/lib/backupclient/backupclient.a [INFO ] make[2]: Leaving directory `lib/backupclient' [INFO ] [CXX] BackupClientContext.cpp [INFO ] [CXX] BackupClientDeleteList.cpp [INFO ] [CXX] BackupClientDirectoryRecord.cpp [INFO ] [CXX] BackupClientInodeToIDMap.cpp [INFO ] [CXX] BackupDaemon.cpp [INFO ] [CXX] Win32BackupService.cpp [INFO ] [CXX] Win32ServiceFunctions.cpp [INFO ] [CXX] autogen_ClientException.cpp [INFO ] [CXX] bbackupd.cpp [INFO ] [LINK] ../../release/bin/bbackupd/bbackupd [INFO ] make[1]: Leaving directory `bin/bbackupd' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupd/bbackupd parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] (cd bin/bbackupquery; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupquery' [INFO ] [CXX] BackupQueries.cpp [INFO ] [CXX] autogen_Documentation.cpp [INFO ] [CXX] bbackupquery.cpp [INFO ] [LINK] ../../release/bin/bbackupquery/bbackupquery [INFO ] make[1]: Leaving directory `bin/bbackupquery' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupquery/bbackupquery parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] (cd bin/bbackupctl; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbackupctl' [INFO ] [CXX] bbackupctl.cpp [INFO ] [LINK] ../../release/bin/bbackupctl/bbackupctl [INFO ] make[1]: Leaving directory `bin/bbackupctl' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] cp -p release/bin/bbackupctl/bbackupctl parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] cp -p bin/bbackupd/bbackupd-config parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/bbackupd.8 docbook/bb-man.xsl docbook/bbackupd.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd [ERROR ] Note: meta date : no date; using generated date bbackupd [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd [ERROR ] Note: Writing bbackupd.8 [INFO ] gzip man/bbackupd.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.8.gz parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] make -C docs man/bbackupquery.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/bbackupquery.8 docbook/bb-man.xsl docbook/bbackupquery.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupquery [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupquery [ERROR ] Note: meta date : no date; using generated date bbackupquery [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupquery [ERROR ] Note: Writing bbackupquery.8 [INFO ] gzip man/bbackupquery.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupquery.8.gz parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] make -C docs man/bbackupctl.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/bbackupctl.8 docbook/bb-man.xsl docbook/bbackupctl.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupctl [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupctl [ERROR ] Note: meta date : no date; using generated date bbackupctl [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupctl [ERROR ] Note: Writing bbackupctl.8 [INFO ] gzip man/bbackupctl.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupctl.8.gz parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/bbackupd-config.8 docbook/bb-man.xsl docbook/bbackupd-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd-config [ERROR ] Note: meta date : no date; using generated date bbackupd-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd-config [ERROR ] Note: Writing bbackupd-config.8 [INFO ] gzip man/bbackupd-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd-config.8.gz parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] make -C docs man/bbackupd.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/bbackupd.conf.5 docbook/bb-man.xsl docbook/bbackupd.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbackupd.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbackupd.conf [ERROR ] Note: meta date : no date; using generated date bbackupd.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbackupd.conf [ERROR ] Note: Writing bbackupd.conf.5 [INFO ] gzip man/bbackupd.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] cp -p docs/man/bbackupd.conf.5.gz parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2512-backup-client-linux-gnu || mkdir parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] cp parcels/scripts/install-backup-client parcels/boxbackup-trunk_2512-backup-client-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2512-backup-client-linux-gnu | gzip -9 - > boxbackup-trunk_2512-backup-client-linux-gnu.tgz ) [INFO ] (cd bin/bbstored; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstored' [INFO ] make[2]: Entering directory `lib/raidfile' [INFO ] [CXX] RaidFileController.cpp [INFO ] [CXX] RaidFileRead.cpp [INFO ] [CXX] RaidFileUtil.cpp [INFO ] [CXX] RaidFileWrite.cpp [INFO ] [CXX] autogen_RaidFileException.cpp [INFO ] [AR] ../../release/lib/raidfile/raidfile.a [INFO ] [RANLIB] ../../release/lib/raidfile/raidfile.a [INFO ] make[2]: Leaving directory `lib/raidfile' [INFO ] make[2]: Entering directory `lib/backupstore' [INFO ] [CXX] BackupStoreAccountDatabase.cpp [INFO ] [CXX] BackupStoreAccounts.cpp [INFO ] [CXX] BackupStoreCheck.cpp [INFO ] [CXX] BackupStoreCheck2.cpp [INFO ] [CXX] BackupStoreCheckData.cpp [INFO ] [CXX] BackupStoreConfigVerify.cpp [INFO ] [CXX] BackupStoreInfo.cpp [INFO ] [CXX] StoreStructure.cpp [INFO ] [AR] ../../release/lib/backupstore/backupstore.a [INFO ] [RANLIB] ../../release/lib/backupstore/backupstore.a [INFO ] make[2]: Leaving directory `lib/backupstore' [INFO ] [CXX] BBStoreDHousekeeping.cpp [INFO ] [CXX] BackupCommands.cpp [INFO ] [CXX] BackupStoreContext.cpp [INFO ] [CXX] BackupStoreDaemon.cpp [INFO ] [CXX] HousekeepStoreAccount.cpp [INFO ] [CXX] autogen_BackupProtocolServer.cpp [INFO ] [CXX] bbstored.cpp [INFO ] [LINK] ../../release/bin/bbstored/bbstored [INFO ] make[1]: Leaving directory `bin/bbstored' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstored/bbstored parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] (cd bin/bbstoreaccounts; make RELEASE=1) [INFO ] make[1]: Entering directory `bin/bbstoreaccounts' [INFO ] [CXX] bbstoreaccounts.cpp [INFO ] [LINK] ../../release/bin/bbstoreaccounts/bbstoreaccounts [INFO ] make[1]: Leaving directory `bin/bbstoreaccounts' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] cp -p release/bin/bbstoreaccounts/bbstoreaccounts parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-certs parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] cp -p bin/bbstored/bbstored-config parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] cp -p lib/raidfile/raidfile-config parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] cp -p LICENSE.txt parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] make -C docs man/bbstored.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/bbstored.8 docbook/bb-man.xsl docbook/bbstored.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored [ERROR ] Note: meta date : no date; using generated date bbstored [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored [ERROR ] Note: Writing bbstored.8 [INFO ] gzip man/bbstored.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.8.gz parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] make -C docs man/bbstoreaccounts.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/bbstoreaccounts.8 docbook/bb-man.xsl docbook/bbstoreaccounts.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstoreaccounts [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstoreaccounts [ERROR ] Note: meta date : no date; using generated date bbstoreaccounts [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstoreaccounts [ERROR ] Note: Writing bbstoreaccounts.8 [INFO ] gzip man/bbstoreaccounts.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstoreaccounts.8.gz parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-certs.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/bbstored-certs.8 docbook/bb-man.xsl docbook/bbstored-certs.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-certs [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-certs [ERROR ] Note: meta date : no date; using generated date bbstored-certs [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored-certs [ERROR ] Note: Writing bbstored-certs.8 [INFO ] gzip man/bbstored-certs.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-certs.8.gz parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] make -C docs man/bbstored-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/bbstored-config.8 docbook/bb-man.xsl docbook/bbstored-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored-config [ERROR ] Note: meta date : no date; using generated date bbstored-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored-config [ERROR ] Note: Writing bbstored-config.8 [INFO ] gzip man/bbstored-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored-config.8.gz parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] make -C docs man/raidfile-config.8.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/raidfile-config.8 docbook/bb-man.xsl docbook/raidfile-config.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile-config [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile-config [ERROR ] Note: meta date : no date; using generated date raidfile-config [ERROR ] Note: meta date : see http://docbook.sf.net/el/date raidfile-config [ERROR ] Note: Writing raidfile-config.8 [INFO ] gzip man/raidfile-config.8 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile-config.8.gz parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] make -C docs man/bbstored.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/bbstored.conf.5 docbook/bb-man.xsl docbook/bbstored.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing bbstored.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document bbstored.conf [ERROR ] Note: meta date : no date; using generated date bbstored.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date bbstored.conf [ERROR ] Note: Writing bbstored.conf.5 [INFO ] gzip man/bbstored.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] cp -p docs/man/bbstored.conf.5.gz parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] make -C docs man/raidfile.conf.5.gz [INFO ] make[1]: Entering directory `docs' [INFO ] make xslt [INFO ] make[2]: Entering directory `docs' [INFO ] make[2]: Nothing to be done for `xslt'. [INFO ] make[2]: Leaving directory `docs' [INFO ] xsltproc -o man/raidfile.conf.5 docbook/bb-man.xsl docbook/raidfile.conf.xml [ERROR ] Note: namesp. cut : stripped namespace before processing raidfile.conf [ERROR ] WARNING: cannot add @xml:base to node set root element. Relative paths may not work. [ERROR ] Note: namesp. cut : processing stripped document raidfile.conf [ERROR ] Note: meta date : no date; using generated date raidfile.conf [ERROR ] Note: meta date : see http://docbook.sf.net/el/date raidfile.conf [ERROR ] Note: Writing raidfile.conf.5 [INFO ] gzip man/raidfile.conf.5 [INFO ] make[1]: Leaving directory `docs' [INFO ] mkdir -p parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] cp -p docs/man/raidfile.conf.5.gz parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] test -d parcels/boxbackup-trunk_2512-backup-server-linux-gnu || mkdir parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] cp parcels/scripts/install-backup-server parcels/boxbackup-trunk_2512-backup-server-linux-gnu [INFO ] (cd parcels; tar cf - boxbackup-trunk_2512-backup-server-linux-gnu | gzip -9 - > boxbackup-trunk_2512-backup-server-linux-gnu.tgz ) -- Build URL: Box Backup An open source, completely automatic on-line backup system for UNIX.